1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-12 10:54:17 +02:00
yt-dlp/test/swftests/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;
}
}
}