@@ -2,6 +2,6 @@ package unit.issues;
class Issue12264 extends Test {
function test() {
- eq(true, Type.typeof(0i64).match(TInt64));
+ eq(true, Type.typeof(256i64).match(TInt64));
}
@@ -129,7 +129,7 @@ Type.typeof(1e10) == TFloat;
#if !eval
Type.typeof(1.0) == TInt;
#end
-var i0 = haxe.Int64.ofInt(0);
+var i0 = haxe.Int64.ofInt(256);
Type.typeof(i0) == TInt64;
var ibig = haxe.Int64.make(1,0);
Type.typeof(ibig) == TInt64;