Aleksandr Kuzmenko 6 年之前
父节点
当前提交
ce5ce1979d
共有 1 个文件被更改,包括 13 次插入0 次删除
  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);
+	}
+}