tests: Recompile a handful of miscompiled tests

This commit is contained in:
David Wendt 2021-03-17 22:02:04 -04:00 committed by kmeisthax
parent 888fcc85ca
commit 176f05a16b
4 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,5 @@
/// var a: Vector.<int> = new <int>[];
/// a.length = 2;
0
/// var a: Vector.<int> = new <int>[1,2];
/// a[0] = "5";
/// a[1] = "not a number";
5
0

View File

@ -1,5 +1,4 @@
/// var a: Vector.<int> = new <int>[1,2];
/// a[0] = "5";
/// a[1] = "not a number";
5
/// var a: Vector.<int> = new <int>[];
/// a.length = 2;
0
0