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