| Index: pkg/kernel/testcases/reify/native_types_test.dart
|
| diff --git a/pkg/kernel/testcases/reify/native_types_test.dart b/pkg/kernel/testcases/reify/native_types_test.dart
|
| index 08de3598e3457961e4517c35c033f8c08190c651..738b1514a4b59b7ad20e83657c1f9c8c21d791c7 100644
|
| --- a/pkg/kernel/testcases/reify/native_types_test.dart
|
| +++ b/pkg/kernel/testcases/reify/native_types_test.dart
|
| @@ -30,9 +30,13 @@ main() {
|
| expectTrue(true is! int);
|
|
|
| // Test error and exception classes
|
| - expectThrows(() => new C(), (e) => e is AbstractClassInstantiationError); /// 01: static type warning
|
| + expectThrows(() => new C(), (e) => e is AbstractClassInstantiationError);
|
|
|
| - expectThrows(() => new D().foo(), (e) => e is NoSuchMethodError); /// 02: static type warning
|
| + /// 01: static type warning
|
| +
|
| + expectThrows(() => new D().foo(), (e) => e is NoSuchMethodError);
|
| +
|
| + /// 02: static type warning
|
|
|
| expectThrows(() => foo, (e) => e is CyclicInitializationError);
|
|
|
|
|