浏览代码

add unit test for #4571

clemos 10 年之前
父节点
当前提交
1787090402
共有 1 个文件被更改,包括 8 次插入0 次删除
  1. 8 0
      tests/unit/src/unit/issues/Issue4571.hx

+ 8 - 0
tests/unit/src/unit/issues/Issue4571.hx

@@ -0,0 +1,8 @@
+package unit.issues;
+
+class Issue4571 extends Test {
+	function test() {
+		var x = -1072787802;
+		eq(x, (x >>> 0));
+	}
+}