Simon Krajewski hace 9 años
padre
commit
07b5348dc8
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      tests/optimization/src/TestAnalyzer.hx

+ 1 - 1
tests/optimization/src/TestAnalyzer.hx

@@ -689,7 +689,7 @@ class TestAnalyzer extends TestBase {
 		var b = B(0);
 		switch (b) {
 			case B(i):
-				assertEqualsConst(0, i);
+				assertEquals(0, i); // Null<Int> vs. Int, should not propagate
 			case A(_):
 		}
 	}