Index: pkg/front_end/testcases/inference/future_union_downwards_3.dart |
diff --git a/pkg/front_end/testcases/inference/future_union_downwards_3.dart b/pkg/front_end/testcases/inference/future_union_downwards_3.dart |
index 4c3f6d6e3667b8bbbde823483810516f6b95f145..5b339b98e12382a2a2b3f464c73da37cbacffe08 100644 |
--- a/pkg/front_end/testcases/inference/future_union_downwards_3.dart |
+++ b/pkg/front_end/testcases/inference/future_union_downwards_3.dart |
@@ -16,12 +16,12 @@ class MyFuture<T> implements Future<T> { |
Future f; |
// Instantiates Future<int> |
-Future<int> t1 = f. /*@typeArgs=int*/ then( |
+Future<int> t1 = f. /*@typeArgs=int*/ /*@target=Future::then*/ then( |
/*@returnType=Future<int>*/ (/*@type=dynamic*/ _) => |
new /*@typeArgs=int*/ Future.value('hi')); |
// Instantiates List<int> |
-Future<List<int>> t2 = f. /*@typeArgs=List<int>*/ then( |
+Future<List<int>> t2 = f. /*@typeArgs=List<int>*/ /*@target=Future::then*/ then( |
/*@returnType=List<int>*/ (/*@type=dynamic*/ _) => /*@typeArgs=int*/ [3]); |
Future<List<int>> g2() async { |
return /*@typeArgs=int*/ [3]; |