2
0
mirror of https://github.com/blackjack4494/yt-dlc.git synced 2025-08-17 19:12:42 -06:00
blackjack4494_yt-dlc/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;
}
}
}
}