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 91a8547f535f92f43b61f311456b3ebf65235ad3..262131aa08436d3071184887c1da4c6e5f60ea81 100644 |
--- a/tests/language_strong/type_variable_scope3_test.dart |
+++ b/tests/language_strong/type_variable_scope3_test.dart |
@@ -5,12 +5,12 @@ |
// Test that a type parameter cannot be repeated. |
class Foo<T |
- , T /// 00: compile-time error |
+ , T // /// 00: compile-time error |
> { |
} |
main() { |
new Foo<String |
- , String /// 00: continued |
+ , String // /// 00: continued |
>(); |
} |