Index: pkg/front_end/testcases/inference/super_property_get_invoke_implicit_call.dart.direct.expect |
diff --git a/pkg/front_end/testcases/inference/super_property_get_invoke_implicit_call.dart.direct.expect b/pkg/front_end/testcases/inference/super_property_get_invoke_implicit_call.dart.direct.expect |
new file mode 100644 |
index 0000000000000000000000000000000000000000..752c29258061030c7d078b79c500b7146123d5ba |
--- /dev/null |
+++ b/pkg/front_end/testcases/inference/super_property_get_invoke_implicit_call.dart.direct.expect |
@@ -0,0 +1,26 @@ |
+library test; |
+import self as self; |
+import "dart:core" as core; |
+ |
+class CallableClass extends core::Object { |
+ constructor •() → void |
+ : super core::Object::•() |
+ ; |
+ method call() → core::int |
+ return 0; |
+} |
+class C extends core::Object { |
+ field dynamic f = new self::CallableClass::•(); |
+ 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 {} |