| Index: tests/language/type_variable_scope3_test.dart
|
| diff --git a/tests/language/type_variable_scope3_test.dart b/tests/language/type_variable_scope3_test.dart
|
| index 99f04d48f8adeeb13eb84fdf3c6c095a53b27258..cea3ee557a7d987065b6992f3f3b0323bfb3e5d7 100644
|
| --- a/tests/language/type_variable_scope3_test.dart
|
| +++ b/tests/language/type_variable_scope3_test.dart
|
| @@ -4,13 +4,14 @@
|
|
|
| // Test that a type parameter cannot be repeated.
|
|
|
| -class Foo<T
|
| +class Foo<
|
| + T
|
| , T // //# 00: compile-time error
|
| - > {
|
| -}
|
| + > {}
|
|
|
| main() {
|
| - new Foo<String
|
| + new Foo<
|
| + String
|
| , String // //# 00: continued
|
| >();
|
| }
|
|
|