Index: tests/language_strong/static_field3_test.dart |
diff --git a/tests/language_strong/static_field3_test.dart b/tests/language_strong/static_field3_test.dart |
index 2748ebdc3823fe9a51adb6bd3497e2a441858fc7..079a1732092b1c2fdee251e34f7b2eb5fb84c1be 100644 |
--- a/tests/language_strong/static_field3_test.dart |
+++ b/tests/language_strong/static_field3_test.dart |
@@ -11,9 +11,9 @@ class Foo { |
main() { |
if (false) { |
- var x = Foo.x; /// 01: static type warning |
- var m = Foo.m; /// 02: static type warning |
- Foo.m = 1; /// 03: static type warning |
- Foo.x = 1; /// 04: static type warning |
+ var x = Foo.x; // /// 01: static type warning |
+ var m = Foo.m; // /// 02: static type warning |
+ Foo.m = 1; // /// 03: static type warning |
+ Foo.x = 1; // /// 04: static type warning |
} |
} |