1
0
Fork 0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-01-19 07:13:05 +01:00
yt-dlp/test/swftests.unused/ConstantInt.as
2021-06-06 00:59:04 +05:30

12 lines
165 B
ActionScript

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