| Index: tests/lib/async/future_or_bad_type_test.dart
|
| diff --git a/tests/lib/async/future_or_bad_type_test.dart b/tests/lib/async/future_or_bad_type_test.dart
|
| index f0faf5373c246ae800d826f0d17df807c7d47fed..5ca8c31c5a782c6c8c7ed3690b03801015613de0 100644
|
| --- a/tests/lib/async/future_or_bad_type_test.dart
|
| +++ b/tests/lib/async/future_or_bad_type_test.dart
|
| @@ -21,7 +21,7 @@ main() {
|
| // completely ignored. It can be a malformed type.
|
| Expect.isTrue(499 is FutureOr<A>);
|
| Expect.isTrue(499 is FutureOr<Does<Not<Exist>>>); /// 00: static type warning
|
| - Expect.isTrue(499 is FutureOr<A, A>); /// 01: static type warning
|
| + Expect.isTrue(499 is FutureOr<A, A>); // /// 01: static type warning
|
|
|
| var a = new A();
|
| Expect.isTrue(a.toString() is String);
|
|
|