| Index: pkg/front_end/testcases/inference/future_then_upwards_from_block.dart
|
| diff --git a/pkg/front_end/testcases/inference/future_then_upwards_from_block.dart b/pkg/front_end/testcases/inference/future_then_upwards_from_block.dart
|
| index 79038744ac0b16af19a6880258c97e90029820ae..952672a17b621d7c837eb05bf8862078bb6808b7 100644
|
| --- a/pkg/front_end/testcases/inference/future_then_upwards_from_block.dart
|
| +++ b/pkg/front_end/testcases/inference/future_then_upwards_from_block.dart
|
| @@ -7,7 +7,7 @@ library test;
|
|
|
| import 'dart:async';
|
|
|
| -main() {
|
| +test() {
|
| Future<int> base;
|
| var /*@type=Future<bool>*/ f =
|
| base. /*@typeArgs=bool*/ /*@target=Future::then*/ then(
|
| @@ -20,3 +20,5 @@ main() {
|
| Future<bool> b = f;
|
| b = g;
|
| }
|
| +
|
| +main() {}
|
|
|