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..c6e2e2647f2f9b2f97da317cd310cc66f31fc33e 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 |
} |
} |