2
0
Aleksandr Kuzmenko 6 жил өмнө
parent
commit
19167a20e9

+ 2 - 1
tests/unit/src/unit/issues/Issue4481.hx

@@ -2,11 +2,12 @@ package unit.issues;
 
 class Issue4481 extends unit.Test {
 	static var s:String = null;
-
+#if !jvm
 	function test() {
 		switch s {
 			case 'a': assert();
 			case _: eq(null, s);
 		}
 	}
+#end
 }