1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-08 09:01:09 +02:00
yt-dlp/test/swftests.unused/ConstantInt.as

13 lines
165 B
ActionScript
Raw Normal View History

// input: []
// output: 2
package {
public class ConstantInt {
private static const x:int = 2;
public static function main():int{
return x;
}
}
}