Index: tests/language/super_no_such_method1_test.dart |
diff --git a/tests/language/super_no_such_method1_test.dart b/tests/language/super_no_such_method1_test.dart |
index 3ee615112eb2020c8a09f64f2b1de34bd6bad185..48a63f3bd9c14619de73635aa6d3419108f1c5b5 100644 |
--- a/tests/language/super_no_such_method1_test.dart |
+++ b/tests/language/super_no_such_method1_test.dart |
@@ -11,9 +11,9 @@ class A { |
class B extends A { |
noSuchMethod(im) => 87; |
- foo() => super.foo(); /// 01: static type warning |
+ foo() => super.foo(); //# 01: static type warning |
} |
main() { |
- Expect.equals(42, new B().foo()); /// 01: continued |
+ Expect.equals(42, new B().foo()); //# 01: continued |
} |