blob: 8e39a748671035d607a460a5541883dd0eeddc60 [file] [log] [blame] [edit]
library;
import self as self;
import "dart:core" as core;
abstract class A extends core::Object {
static factory •() self::A /* redirection-target: self::B::• */
return self::B::•();
static synthetic method _#new#tearOff() → self::A
return new self::C::•();
}
abstract class B extends core::Object implements self::A {
static factory •() self::B /* redirection-target: self::C::• */
return new self::C::•();
static synthetic method _#new#tearOff() → self::B
return new self::C::•();
}
class C extends core::Object implements self::B /*hasConstConstructor*/ {
const constructor •() self::C
: super core::Object::•()
;
static synthetic method _#new#tearOff() → self::C
return new self::C::•();
}
static method main() dynamic
;