| Index: pkg/front_end/testcases/inference/method_call_with_type_arguments_top_level_function.dart
|
| diff --git a/pkg/front_end/testcases/inference/method_call_with_type_arguments_top_level_function.dart b/pkg/front_end/testcases/inference/method_call_with_type_arguments_top_level_function.dart
|
| index 1aaa5246de36ed98644dc86dcd6a8adaebc71b40..afc98117b809072b351cee5fc1f333faa8d325b4 100644
|
| --- a/pkg/front_end/testcases/inference/method_call_with_type_arguments_top_level_function.dart
|
| +++ b/pkg/front_end/testcases/inference/method_call_with_type_arguments_top_level_function.dart
|
| @@ -10,3 +10,7 @@ D<T> f<T>() => null;
|
| class D<T> {}
|
|
|
| var /*@topType=D<int>*/ g = f<int>();
|
| +
|
| +main() {
|
| + g;
|
| +}
|
|
|