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

11 lines
147 B
ActionScript
Raw Normal View History

2014-11-17 04:27:51 +01:00
// input: []
// output: false
package {
public class EqualsOperator {
public static function main():Boolean{
return 1 == 2;
}
}
}