| Index: tests/language/type_promotion_parameter_test.dart
|
| diff --git a/tests/language/type_promotion_parameter_test.dart b/tests/language/type_promotion_parameter_test.dart
|
| index 6fe7eccc0963a7a70622829add686c01173ba99b..fd07e2cbd0f971339995076878980cadf5140ddb 100644
|
| --- a/tests/language/type_promotion_parameter_test.dart
|
| +++ b/tests/language/type_promotion_parameter_test.dart
|
| @@ -160,8 +160,8 @@ void test(A a) {
|
| }
|
| if (a is D
|
| && a.a == ""
|
| - && a.b == "" /// 42: static type warning
|
| - && a.c == "" /// 43: static type warning
|
| + && a.b == "" // /// 42: static type warning
|
| + && a.c == "" // /// 43: static type warning
|
| && a.d == "") {
|
| print(a.a);
|
| print(a.b); /// 44: static type warning
|
|
|