a865bd8b5fca343bc81a05986a5072e7e4d73ecf
[swftools.git] / static1.as
1 package package1 {
2     public class A {
3         public var x;
4         public static function f() 
5         {
6             x = 3; //error: this member is not static
7         }
8     }
9 }