blob: 15071a4599edf8f6a3065283b65b0afd3e5abe12 [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
class A extends core::Object {
synthetic constructor •() self::A
: super core::Object::•()
;
method noSuchMethod(core::Invocation i) dynamic {
return null;
}
}
abstract class I extends core::Object {
synthetic constructor •() self::I
: super core::Object::•()
;
abstract method foo() void;
}
class B extends self::A implements self::I {
synthetic constructor •() self::B
: super self::A::•()
;
no-such-method-forwarder method foo() void
return this.{self::A::noSuchMethod}(new core::_InvocationMirror::_withoutType("foo", const <core::Type>[], const <dynamic>[], core::Map::unmodifiable<core::Symbol, dynamic>(const <core::Symbol, dynamic>{}), false));
}
static method main() dynamic {}