Last active
December 20, 2015 12:09
-
-
Save back2dos/6129165 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
| package ; | |
| class Main { | |
| static function main() test(Foo); | |
| static function test(e:MyEnum) {} | |
| static function test2():MyEnum | |
| return Foo; | |
| } |
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
| package ; | |
| enum MyEnum { | |
| Foo; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment