Index: pkg/front_end/testcases/inference_new/multiple_interface_inheritance.dart.outline.expect |
diff --git a/pkg/front_end/testcases/inference_new/multiple_interface_inheritance.dart.outline.expect b/pkg/front_end/testcases/inference_new/multiple_interface_inheritance.dart.outline.expect |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9332738e39187912dbb731086f50378985059ac3 |
--- /dev/null |
+++ b/pkg/front_end/testcases/inference_new/multiple_interface_inheritance.dart.outline.expect |
@@ -0,0 +1,40 @@ |
+library test; |
+import self as self; |
+import "dart:core" as core; |
+ |
+abstract class I1 extends core::Object { |
+ default constructor •() → void |
+ ; |
+ abstract method f(core::int i) → void; |
+} |
+abstract class I2 extends core::Object { |
+ default constructor •() → void |
+ ; |
+ abstract method f(core::Object o) → void; |
+} |
+abstract class C extends core::Object implements self::I1, self::I2 { |
+ default constructor •() → void |
+ ; |
+} |
+class D extends self::C { |
+ default constructor •() → void |
+ ; |
+ method f(core::Object o) → void |
+ ; |
+} |
+abstract class E extends core::Object implements self::I2, self::I1 { |
+ default constructor •() → void |
+ ; |
+} |
+class F extends self::E { |
+ default constructor •() → void |
+ ; |
+ method f(core::Object o) → void |
+ ; |
+} |
+static method g1(self::C c) → void |
+ ; |
+static method g2(self::E e) → void |
+ ; |
+static method main() → dynamic |
+ ; |