blob: 0d5738c4d1c997760d7675c593f1b646d17eecd8 [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 _Base&Mixin = self::Base with self::Mixin {
}
class Sub extends self::_Base&Mixin {
synthetic constructor •() void
: super self::Base::•()
;
}
static method main() dynamic {
new self::Sub::•().foo();
}