Index: pkg/front_end/testcases/inference/method_call_with_type_arguments_top_level_function.dart.strong.expect |
diff --git a/pkg/front_end/testcases/inference/method_call_with_type_arguments_top_level_function.dart.strong.expect b/pkg/front_end/testcases/inference/method_call_with_type_arguments_top_level_function.dart.strong.expect |
new file mode 100644 |
index 0000000000000000000000000000000000000000..84f00752139188879945408df4f59ca4d7e2c59b |
--- /dev/null |
+++ b/pkg/front_end/testcases/inference/method_call_with_type_arguments_top_level_function.dart.strong.expect |
@@ -0,0 +1,15 @@ |
+library test; |
+import self as self; |
+import "dart:core" as core; |
+ |
+class D<T extends core::Object> extends core::Object { |
+ constructor •() → void |
+ : super core::Object::•() |
+ ; |
+} |
+static field self::D<core::int> g = self::f<core::int>(); |
+static method f<T extends core::Object>() → self::D<self::f::T> |
+ return null; |
+static method main() → dynamic { |
+ self::g; |
+} |