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