blob: 7fb281431e33ffe4443358a18e77822977cf7a20 [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
class Base extends core::Object {
synthetic constructor •() self::Base
: super core::Object::•()
;
}
class Mixin extends core::Object {
synthetic constructor •() self::Mixin
: super core::Object::•()
;
method foo() dynamic
return core::print("foo");
}
abstract class _Sub&Base&Mixin extends self::Base implements self::Mixin {
synthetic constructor •() self::_Sub&Base&Mixin
: super self::Base::•()
;
method foo() dynamic
return core::print("foo");
}
class Sub extends self::_Sub&Base&Mixin {
synthetic constructor •() self::Sub
: super self::Base::•()
;
}
static method main() dynamic {
new self::Sub::•().foo();
}