logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git

ClassConstruction.as (181B)


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