blob: 32ef81fef6db1b6ea9e4c098a3f1dfb019da06c2 [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
abstract class I<T extends core::Object> extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
abstract method foo() self::I::T;
}
class M extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
method noSuchMethod(core::Invocation i) dynamic {
return null;
}
}
abstract class _A&Object&M extends core::Object implements self::M {
synthetic constructor •() void
: super core::Object::•()
;
method noSuchMethod(core::Invocation i) dynamic {
return null;
}
}
class A extends self::_A&Object&M implements self::I<core::int> {
synthetic constructor •() void
: super core::Object::•()
;
abstract no-such-method-forwarder method foo() core::int;
}
static method main() dynamic {}