Aleksandr Kuzmenko 6 years ago
parent
commit
ce5ce1979d
1 changed files with 13 additions and 0 deletions
  1. 13 0
      tests/unit/src/unit/issues/Issue5816.hx

+ 13 - 0
tests/unit/src/unit/issues/Issue5816.hx

@@ -0,0 +1,13 @@
+package unit.issues;
+
+import haxe.Int64;
+
+class Issue5816 extends unit.Test {
+	static var value:Int64 = 0;
+
+	function test() {
+		eq((0:Int64), value);
+		value++;
+		eq((1:Int64), value);
+	}
+}