blob: 4bee7700e4a0b5a29e06da14d351553c24ba0bdc [file] [log] [blame]
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 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 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 method _#new#tearOff() → self::C
return new self::C::•();
}
static method main() dynamic {
#C1;
}
constants {
#C1 = static-tearoff self::A::_#new#tearOff
}