]> jfr.im git - yt-dlp.git/blame - test/swftests/DictCall.as
[test_compat] Fix typo
[yt-dlp.git] / test / swftests / DictCall.as
CommitLineData
4baafa22
PH
1// input: [{"x": 1, "y": 2}]
2// output: 3
3
4package {
5public class DictCall {
6 public static function main(d:Object):int{
0ab1ca55 7 return d.x + d.y;
4baafa22
PH
8 }
9}
10}