1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// input: [] // output: 0 package { public class ClassConstruction { public static function main():int{ var f:Foo = new Foo(); return 0; } } } class Foo { }