Index: tests/language_strong/proxy_test.dart |
diff --git a/tests/language_strong/proxy_test.dart b/tests/language_strong/proxy_test.dart |
index 4d4c1c7f032f422bdcb44125505d86efb6842919..404e274a631ffd703cbd25ad00f3a7481b2e63cc 100644 |
--- a/tests/language_strong/proxy_test.dart |
+++ b/tests/language_strong/proxy_test.dart |
@@ -15,12 +15,12 @@ const alias = proxy; |
class AliasProxy {} |
main() { |
- try { new NonProxy().foo; } catch (e) {} /// 01: static type warning |
- try { new NonProxy().foo(); } catch (e) {} /// 02: static type warning |
+ try { new NonProxy().foo; } catch (e) {} //# 01: static type warning |
+ try { new NonProxy().foo(); } catch (e) {} //# 02: static type warning |
- try { new Proxy().foo; } catch (e) {} /// 03: ok |
- try { new Proxy().foo(); } catch (e) {} /// 04: ok |
+ try { new Proxy().foo; } catch (e) {} //# 03: ok |
+ try { new Proxy().foo(); } catch (e) {} //# 04: ok |
- try { new AliasProxy().foo; } catch (e) {} /// 05: ok |
- try { new AliasProxy().foo(); } catch (e) {} /// 06: ok |
+ try { new AliasProxy().foo; } catch (e) {} //# 05: ok |
+ try { new AliasProxy().foo(); } catch (e) {} //# 06: ok |
} |