@aharui it looks like the changes for this affected other static variables with 
instantiated classes that are not from a SWC file.  So, in the example below, I 
get an "Uncaught ReferenceError: StaticClass is not defined" in the browser 
console when I build and run the output.  No build errors.

```
package
{
    public class Main
    {   
            private static var _myStaticClass:StaticClass = new StaticClass();
                
            public function Main()
            {
                    super();
            }
    }
}
```
```
package 
{
    public class StaticClass 
    {
            public function StaticClass() 
            {
                        
            }
    }
}
```

[ Full content available at: 
https://github.com/apache/royale-compiler/issues/47 ]
This message was relayed via gitbox.apache.org for [email protected]

Reply via email to