Browse Source

[java] Type.createInstance with anonymous structure (fixes #7233)

Andreas 7 years ago
parent
commit
13be4e409d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/unit/src/unit/issues/Issue7233.hx

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

@@ -10,7 +10,7 @@ class Issue7233 extends unit.Test {
 }
 
 private class TestClass {
-    var name : String;
+    public var name : String;
 
     public function new(data) {
         this.name = data.name;