Index: tests/language_strong/list_literal_syntax_test.dart |
diff --git a/tests/language_strong/list_literal_syntax_test.dart b/tests/language_strong/list_literal_syntax_test.dart |
index c1a2060a00c56c1d79010663faeb19c10110cd3b..783f571d45c5e6a2ca35b625f21623084fad476a 100644 |
--- a/tests/language_strong/list_literal_syntax_test.dart |
+++ b/tests/language_strong/list_literal_syntax_test.dart |
@@ -8,50 +8,61 @@ abstract class I {} |
void main() { |
var list; |
- list = <int |
+ list = < |
+ int |
I //# 00: compile-time error |
, int //# 01: static type warning |
- >[0]; |
+ >[0]; |
Expect.equals(1, list.length); |
- list = <int |
+ list = < |
+ int |
, int //# 02: static type warning |
, int //# 02: continued |
- >[0]; |
+ >[0]; |
Expect.equals(1, list.length); |
- list = <int |
+ list = < |
+ int |
, int //# 03: static type warning |
, int //# 03: continued |
, int //# 03: continued |
- >[0]; |
+ >[0]; |
Expect.equals(1, list.length); |
list = |
<> //# 04: compile-time error |
- [0]; |
+ [0]; |
Expect.equals(1, list.length); |
list = |
<<>> //# 05: compile-time error |
- [0]; |
+ [0]; |
Expect.equals(1, list.length); |
list = |
<<<>>> //# 06: compile-time error |
- [0]; |
+ [0]; |
Expect.equals(1, list.length); |
list = |
<[]> //# 07: compile-time error |
- [0]; |
+ [0]; |
Expect.equals(1, list.length); |
- list = <int>[<int>[<int>[1][0]][0]]; |
+ list = <int>[ |
+ <int>[ |
+ <int>[1][0] |
+ ][0] |
+ ]; |
Expect.equals(1, list.length); |
Expect.equals(1, list[0]); |
- list = <int>[<List<int>>[[1]][0][0]]; |
+ list = <int>[ |
+ <List<int>>[ |
+ [1] |
+ ][0][0] |
+ ]; |
Expect.equals(1, list.length); |
Expect.equals(1, list[0]); |
} |