Browse Source

avoid JS test problem

Simon Krajewski 1 year ago
parent
commit
2f9f6b50fa
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/unit/src/unit/issues/Issue11560.hx

+ 1 - 1
tests/unit/src/unit/issues/Issue11560.hx

@@ -10,7 +10,7 @@ private class ParentClass {
 
 @:keep
 private class ChildClass extends ParentClass {
-	var anyVar:String;
+	var anyVar:String = null;
 }
 
 class Issue11560 extends Test {