| Index: tests/language/type_variable_bounds2_test.dart
|
| diff --git a/tests/language/type_variable_bounds2_test.dart b/tests/language/type_variable_bounds2_test.dart
|
| index 1a23bebca809a5469262e57da42cd2690b01f2fc..f3c2de28227436f8df128166c06e9d7836523567 100644
|
| --- a/tests/language/type_variable_bounds2_test.dart
|
| +++ b/tests/language/type_variable_bounds2_test.dart
|
| @@ -41,7 +41,7 @@ main() {
|
| // However, while unsuccessfully trying to prove that A<String> is a K,
|
| // a malformed type is encountered in checked mode, resulting in a dynamic
|
| // type error.
|
| - Expect.isTrue(a is !K); /// 05: dynamic type error
|
| + Expect.isTrue(a is !K); /// 05: dynamic type error, static type warning
|
| }
|
|
|
| a = new A<int>();
|
|
|