0
0
Fork 0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-10-31 23:02:40 +00:00
yt-dlp/test/swftests.unused/EqualsOperator.as
2021-06-06 00:59:04 +05:30

10 lines
147 B
ActionScript

// input: []
// output: false
package {
public class EqualsOperator {
public static function main():Boolean{
return 1 == 2;
}
}
}