youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

ClassConstruction.as (181B)


      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 }