1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-22 07:26:53 +02:00
yt-dlp/test/swftests.unused/ConstantInt.as
2021-06-06 00:59:04 +05:30

13 lines
165 B
ActionScript

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