1
0
mirror of https://github.com/l1ving/youtube-dl synced 2024-10-17 05:00:05 +08:00
youtube-dl/test/swftests/StaticRetrieval.as

17 lines
226 B
ActionScript
Raw Normal View History

// input: []
// output: 1
package {
public class StaticRetrieval {
public static var v:int;
public static function main():int{
if (v) {
return 0;
} else {
return 1;
}
}
}
}