| Index: tests/language_strong/type_variable_bounds3_test.dart
|
| diff --git a/tests/language_strong/type_variable_bounds3_test.dart b/tests/language_strong/type_variable_bounds3_test.dart
|
| index 405c4a740306595bc575f9bd0210453cf7ecf672..aeef48151cb50a3bacbbf7c7f689a4891ccfeea4 100644
|
| --- a/tests/language_strong/type_variable_bounds3_test.dart
|
| +++ b/tests/language_strong/type_variable_bounds3_test.dart
|
| @@ -9,7 +9,7 @@ class A<K extends int> {
|
|
|
| class B<X, Y> {
|
| foo(x) {
|
| - return x is A<X>; // /// 00: dynamic type error, static type warning
|
| + return x is A<X>; // //# 00: dynamic type error, static type warning
|
| }
|
| }
|
|
|
|
|