| Index: tests/language/checked_null_test.dart
|
| diff --git a/tests/language/checked_null_test.dart b/tests/language/checked_null_test.dart
|
| index 95df12b2e7c3be12bada1584e3c0e9f1544d71fb..0f2a200fdb299111d05e1122822890fb7476651e 100644
|
| --- a/tests/language/checked_null_test.dart
|
| +++ b/tests/language/checked_null_test.dart
|
| @@ -12,8 +12,8 @@ class A {
|
| A() : b = null, a = null;
|
| }
|
|
|
| -main() {
|
| - Expect.throws(bar); /// 01: continued
|
| +main() {
|
| + Expect.throws(bar);
|
| }
|
|
|
| bar() {
|
| @@ -21,5 +21,5 @@ bar() {
|
| // receiver type is a typedef. Some code in the dart2js backend were
|
| // not dealing correctly with typedefs and lead the compiler to
|
| // crash.
|
| - new A().a.foo(); /// 01: static type warning
|
| + new A().a.foo();
|
| }
|
|
|