Browse Source

add test (closes #4254)

Simon Krajewski 10 years ago
parent
commit
cdb2ba89d4
1 changed files with 9 additions and 0 deletions
  1. 9 0
      tests/unit/src/unit/issues/Issue4254.hx

+ 9 - 0
tests/unit/src/unit/issues/Issue4254.hx

@@ -0,0 +1,9 @@
+package unit.issues;
+
+class Issue4254 extends Test {
+	var px:Int = Math.floor(20);
+
+	function test() {
+		eq(20, px);
+	}
+}