Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Side by Side Diff: pkg/front_end/testcases/inference_new/multiple_interface_inheritance.dart.outline.expect

Issue 3010483002: Add tests demonstrating bugs #30547 and #30552. (Closed)
Patch Set: Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 library test;
2 import self as self;
3 import "dart:core" as core;
4
5 abstract class I1 extends core::Object {
6 default constructor •() → void
7 ;
8 abstract method f(core::int i) → void;
9 }
10 abstract class I2 extends core::Object {
11 default constructor •() → void
12 ;
13 abstract method f(core::Object o) → void;
14 }
15 abstract class C extends core::Object implements self::I1, self::I2 {
16 default constructor •() → void
17 ;
18 }
19 class D extends self::C {
20 default constructor •() → void
21 ;
22 method f(core::Object o) → void
23 ;
24 }
25 abstract class E extends core::Object implements self::I2, self::I1 {
26 default constructor •() → void
27 ;
28 }
29 class F extends self::E {
30 default constructor •() → void
31 ;
32 method f(core::Object o) → void
33 ;
34 }
35 static method g1(self::C c) → void
36 ;
37 static method g2(self::E e) → void
38 ;
39 static method main() → dynamic
40 ;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698