blob: 4ff76881dadfd58bb2a3a138fd61f831ba3d1b79 [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
abstract class I<T extends core::Object = dynamic> 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 = core::Object with self::M {
}
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 {}