updated .gitignore, new as3 test cases, build system fixes
[swftools.git] / lib / as3 / ok / staticself.as
1 package 
2 {
3     public class T
4     {
5     }
6     public class Main
7     {
8         public static const t = new T();
9         public static const BASE = new Main();
10
11         function Main() 
12         {
13             trace("ok");
14             trace("[exit]");
15         }
16     }                  
17 }