Index: pkg/front_end/testcases/inference/super_method_invocation.dart.dartk.expect |
diff --git a/pkg/front_end/testcases/inference/super_method_invocation.dart.dartk.expect b/pkg/front_end/testcases/inference/super_method_invocation.dart.dartk.expect |
deleted file mode 100644 |
index 4d041bd6fb4f9864b9e891df6c8c04cfd782942f..0000000000000000000000000000000000000000 |
--- a/pkg/front_end/testcases/inference/super_method_invocation.dart.dartk.expect |
+++ /dev/null |
@@ -1,20 +0,0 @@ |
-library test; |
-import self as self; |
-import "dart:core" as core; |
- |
-class C extends core::Object { |
- constructor •() → void |
- : super core::Object::•() |
- ; |
- method f() → core::int |
- return 0; |
-} |
-class D extends self::C { |
- constructor •() → void |
- : super self::C::•() |
- ; |
- method g() → void { |
- dynamic x = super.f(); |
- } |
-} |
-static method main() → dynamic {} |