blob: 585c3d5e0bb2cda4715f7cf5bff084cd26d13b62 [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
class Mixin extends core::Object {
field dynamic field;
constructor •() void
;
method foo() dynamic
;
}
abstract class Object&Mixin = core::Object with self::Mixin {
}
class Foo extends self::Object&Mixin {
constructor •() void
;
method foo() dynamic
;
method bar() dynamic
;
}
static method main() dynamic
;