| Index: pkg/front_end/testcases/inference/future_union_downwards_2.dart
|
| diff --git a/pkg/front_end/testcases/inference/future_union_downwards_2.dart b/pkg/front_end/testcases/inference/future_union_downwards_2.dart
|
| index 0d3748b9d1406b7dcdab98998c8c3405b8f74cba..455803645ef96f092cc6ea6ca6e8c60061e464a9 100644
|
| --- a/pkg/front_end/testcases/inference/future_union_downwards_2.dart
|
| +++ b/pkg/front_end/testcases/inference/future_union_downwards_2.dart
|
| @@ -17,7 +17,7 @@ class MyFuture<T> implements Future<T> {
|
| MyFuture f;
|
| // Instantiates Future<int>
|
| Future<int> t1 = f.then(/*@returnType=MyFuture<int>*/ (/*@type=dynamic*/ _) =>
|
| - /*@typeArgs=int*/ new MyFuture.value('hi'));
|
| + new /*@typeArgs=int*/ MyFuture.value('hi'));
|
|
|
| // Instantiates List<int>
|
| Future<List<int>> t2 = f.then(
|
| @@ -27,6 +27,6 @@ Future<List<int>> g2() async {
|
| }
|
|
|
| Future<List<int>> g3() async {
|
| - return /*@typeArgs=List<int>*/ new MyFuture.value(
|
| + return new /*@typeArgs=List<int>*/ MyFuture.value(
|
| /*@typeArgs=int*/ [3]);
|
| }
|
|
|