Created
January 13, 2013 20:05
-
-
Save gcmurphy/4525918 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void example() | |
| { | |
| A *a; | |
| B *b; | |
| a = a_new(); | |
| b = b_new(a); | |
| use_b(b); | |
| b_delete(b); | |
| a_delete(a); | |
| puts("bye"); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment