summaryrefslogtreecommitdiff
path: root/test/swftests/ConstantInt.as
blob: e0bbb6166f4d3465efb167c23c9368111e476f26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// input: []
// output: 2

package {
public class ConstantInt {
	private static const x:int = 2;

    public static function main():int{
        return x;
    }
}
}