| 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 38c7c07360ad3d350f255eeb67bd101473b7d37c..0d4f34be354a57c76b3fa8973748ab4ecc81f6a1 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
|
| });
|
| }
|
|
|
|
|