]> Raphaƫl G. Git Repositories - youtubedl/blob - test/swftests/StaticAssignment.as
Imported Upstream version 2014.08.05
[youtubedl] / test / swftests / StaticAssignment.as
1 // input: [1]
2 // output: 1
3
4 package {
5 public class StaticAssignment {
6 public static var v:int;
7
8 public static function main(a:int):int{
9 v = a;
10 return v;
11 }
12 }
13 }