Index: tests/language/call_through_getter_test.dart |
diff --git a/tests/language/call_through_getter_test.dart b/tests/language/call_through_getter_test.dart |
index 79ad94eff340662643a1e663bbe46b118cff63cd..949ed00785f6d682010c87ae8264c24b5515c54f 100644 |
--- a/tests/language/call_through_getter_test.dart |
+++ b/tests/language/call_through_getter_test.dart |
@@ -31,10 +31,10 @@ class CallThroughGetterTest { |
Expect.equals(2, topLevel()); |
expectThrowsNoSuchMethod(() { |
- TOP_LEVEL_CONST(); /// static type warning |
+ TOP_LEVEL_CONST(); //# static type warning |
}); |
expectThrowsNoSuchMethod(() { |
- (TOP_LEVEL_CONST)(); /// static type warning |
+ (TOP_LEVEL_CONST)(); //# static type warning |
}); |
} |