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 91a8547f535f92f43b61f311456b3ebf65235ad3..78972fb9a2dad150ead816c4a73884e1470cd278 100644 |
--- a/tests/language/type_variable_scope3_test.dart |
+++ b/tests/language/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 |
>(); |
} |