Created
April 16, 2013 06:42
-
-
Save Atry/5393858 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 ExplicitCommonType | |
{ | |
public static function main() | |
{ | |
// ExplicitCommonType.hx:6: characters 71-89 : IntHash<Int> should be Hash<Int> | |
var iterable:Iterable<Int> = Math.random() < 0.5 ? new Hash<Int>() : new IntHash<Int>(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment