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