Index: tests/language/inferrer_constructor5_test.dart |
=================================================================== |
--- tests/language/inferrer_constructor5_test.dart (revision 30412) |
+++ tests/language/inferrer_constructor5_test.dart (working copy) |
@@ -6,7 +6,7 @@ |
class A { |
A() { |
- print(field + 42); |
+ print(field + 42); /// 01: static type warning |
} |
} |
@@ -18,5 +18,5 @@ |
} |
main() { |
- Expect.throws(() => new B(), (e) => e is NoSuchMethodError); |
+ Expect.throws(() => new B(), (e) => e is NoSuchMethodError); /// 01: continued |
} |