Index: tests/language/proxy2_test.dart |
diff --git a/tests/language/proxy2_test.dart b/tests/language/proxy2_test.dart |
index 485f26e8d6257075fb330404e424fb79c21bf489..4341c4d8844f57615a0b465e19e167cfa598cf2f 100644 |
--- a/tests/language/proxy2_test.dart |
+++ b/tests/language/proxy2_test.dart |
@@ -19,9 +19,9 @@ class WrongProxy {} |
class PrefixProxy {} |
main() { |
- try { new WrongProxy().foo; } catch (e) {} // /// 01: static type warning |
- try { new WrongProxy().foo(); } catch (e) {} // /// 02: static type warning |
+ try { new WrongProxy().foo; } catch (e) {} // //# 01: static type warning |
+ try { new WrongProxy().foo(); } catch (e) {} // //# 02: static type warning |
- try { new PrefixProxy().foo; } catch (e) {} /// 03: ok |
- try { new PrefixProxy().foo(); } catch (e) {} /// 04: ok |
+ try { new PrefixProxy().foo; } catch (e) {} //# 03: ok |
+ try { new PrefixProxy().foo(); } catch (e) {} //# 04: ok |
} |