blob: aeadca54f077203348598b05a2ef74a1e2ace993 [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
abstract class I extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
abstract method foo() void;
}
class A extends core::Object implements self::I {
synthetic constructor •() void
: super core::Object::•()
;
method noSuchMethod(core::Invocation i) dynamic
return null;
abstract no-such-method-forwarder method foo() void;
}
abstract class _B&Object&A = core::Object with self::A {
}
class B extends self::_B&Object&A {
synthetic constructor •() void
: super core::Object::•()
;
}
static method main() dynamic {}