Index: tests/language/function_type_alias5_test.dart |
diff --git a/tests/language/function_type_alias5_test.dart b/tests/language/function_type_alias5_test.dart |
index a90f806155f93b5e592b1955e80d10d376ff4d1b..4d20379ea0c8bde6c9d50ea64baa8b299d613d97 100644 |
--- a/tests/language/function_type_alias5_test.dart |
+++ b/tests/language/function_type_alias5_test.dart |
@@ -3,15 +3,15 @@ |
// BSD-style license that can be found in the LICENSE file. |
// Dart test for illegally self referencing function type alias. |
-typedef Handle Handle(String command); /// 00: compile-time error |
+typedef Handle Handle(String command); //# 00: compile-time error |
-typedef F(F x); /// 01: compile-time error |
+typedef F(F x); //# 01: compile-time error |
-typedef A(B x); /// 02: compile-time error |
-typedef B(A x); /// 02: continued |
+typedef A(B x); //# 02: compile-time error |
+typedef B(A x); //# 02: continued |
main() { |
- Handle h; /// 00: continued |
- F f; /// 01: continued |
- A f; /// 02: continued |
+ Handle h; //# 00: continued |
+ F f; //# 01: continued |
+ A f; //# 02: continued |
} |