]> Raphaƫl G. Git Repositories - youtubedl/blob - test/swftests/ClassConstruction.as
Initiate new release
[youtubedl] / test / swftests / ClassConstruction.as
1 // input: []
2 // output: 0
3
4 package {
5 public class ClassConstruction {
6 public static function main():int{
7 var f:Foo = new Foo();
8 return 0;
9 }
10 }
11 }
12
13 class Foo {
14
15 }