Created
October 2, 2016 19:18
-
-
Save jerstlouis/f88498463b424ef13d6db8836c9628ca to your computer and use it in GitHub Desktop.
This file contains 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
class Foo { } | |
class App : Application | |
{ | |
void Main() | |
{ | |
Array<Foo> a { }; | |
Array<Foo> b { }; | |
Foo foo { }; | |
a.Add(foo); | |
b.Add(foo); | |
a.Free(); | |
b.Free(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment