| Index: tests/language/regress_21912_test.dart
|
| diff --git a/tests/language/regress_21912_test.dart b/tests/language/regress_21912_test.dart
|
| index a97888289d53070368c2e9b85ac6485a648ef796..8a7151bcf0cd80939f8194684929aa14af69f828 100644
|
| --- a/tests/language/regress_21912_test.dart
|
| +++ b/tests/language/regress_21912_test.dart
|
| @@ -16,7 +16,7 @@ void main() {
|
| Function2<Function2<A, B>, Function2<B, A>> t1;
|
| Function2<AToB, BToA> t2;
|
| Function2<Function2<int, double>, Function2<int, double>> left;
|
| - left = t1; /// 01: ok
|
| - left = t2; /// 02: ok
|
| + left = t1; /// 01: static type warning
|
| + left = t2; /// 02: static type warning
|
| }
|
| }
|
|
|