blob: 1c9d1e57aa8034ddb310a5ab8e52e5761456823f [file] [log] [blame]
// Formatted problems:
//
// pkg/front_end/testcases/cycles.dart:5:7: Error: 'A' is a supertype of itself via 'B', 'C'.
// class A implements C {}
// ^
//
// pkg/front_end/testcases/cycles.dart:7:7: Error: 'B' is a supertype of itself via 'A', 'C'.
// class B extends A {}
// ^
//
// pkg/front_end/testcases/cycles.dart:9:7: Error: 'C' is a supertype of itself via 'A', 'B'.
// class C extends B implements D {}
// ^
library;
import self as self;
import "dart:core" as core;
class A extends core::Object {
synthetic constructor •() void
;
}
class B extends core::Object {
synthetic constructor •() void
;
}
class C extends core::Object {
synthetic constructor •() void
;
}
class D extends core::Object {
synthetic constructor •() void
;
}
static method main() dynamic
;