Index: tests/language_strong/type_variable_scope3_test.dart |
diff --git a/tests/language_strong/type_variable_scope3_test.dart b/tests/language_strong/type_variable_scope3_test.dart |
index cea3ee557a7d987065b6992f3f3b0323bfb3e5d7..99f04d48f8adeeb13eb84fdf3c6c095a53b27258 100644 |
--- a/tests/language_strong/type_variable_scope3_test.dart |
+++ b/tests/language_strong/type_variable_scope3_test.dart |
@@ -4,14 +4,13 @@ |
// 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 |
>(); |
} |