| 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 f3c2de28227436f8df128166c06e9d7836523567..9fd3894b20f44db59529043b0a890876d91d44cc 100644
|
| --- a/tests/language/type_variable_bounds2_test.dart
|
| +++ b/tests/language/type_variable_bounds2_test.dart
|
| @@ -27,21 +27,21 @@ main() {
|
| var a = new A<String>();
|
|
|
| {
|
| - I i = a; /// 00: dynamic type error, static type warning
|
| - J j = a; /// 01: static type warning
|
| - K k = a; /// 02: dynamic type error, static type warning
|
| + I i = a; // /// 00: dynamic type error, static type warning
|
| + J j = a; // /// 01: static type warning
|
| + K k = a; // /// 02: dynamic type error, static type warning
|
|
|
| // In production mode, A<String> is subtype of I, error in checked mode.
|
| - var x = a is I; /// 03: dynamic type error, static type warning
|
| + var x = a is I; // /// 03: dynamic type error, static type warning
|
|
|
| // In both production and checked modes, A<String> is a subtype of J.
|
| - Expect.isTrue(a is J); /// 04: static type warning
|
| + Expect.isTrue(a is J); // /// 04: static type warning
|
|
|
| // In both production and checked modes, A<String> is not a subtype of K.
|
| // 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, static type warning
|
| + Expect.isTrue(a is !K); // /// 05: dynamic type error, static type warning
|
| }
|
|
|
| a = new A<int>();
|
| @@ -49,7 +49,7 @@ main() {
|
| {
|
| I i = a;
|
| J j = a;
|
| - K k = a; /// 06: dynamic type error, static type warning
|
| + K k = a; // /// 06: dynamic type error, static type warning
|
|
|
| // In both production and checked modes, A<int> is a subtype of I.
|
| Expect.isTrue(a is I);
|
|
|