Index: pkg/front_end/testcases/inference/future_then.dart |
diff --git a/pkg/front_end/testcases/inference/future_then.dart b/pkg/front_end/testcases/inference/future_then.dart |
index 2a826ac9a8b003967c8b3f3e0acb0f5d0fe7a596..6b9527fbad3def8819b87a0d7f302f7efe1b0b2b 100644 |
--- a/pkg/front_end/testcases/inference/future_then.dart |
+++ b/pkg/front_end/testcases/inference/future_then.dart |
@@ -10,7 +10,7 @@ import 'dart:async'; |
class MyFuture<T> implements Future<T> { |
MyFuture() {} |
MyFuture.value(T x) {} |
- dynamic noSuchMethod(invocation); |
+ dynamic noSuchMethod(/*@topType=Invocation*/ invocation); |
MyFuture<S> then<S>(FutureOr<S> f(T x), {Function onError}) => null; |
} |