blob: 481d9388ff39d25edea1e92f9a2ca78949bb7105 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class C<T extends core::Object* = dynamic> extends core::Object {
synthetic constructor •() self::C<self::C::T*>*
: super core::Object::•()
;
method f(generic-covariant-impl self::C::T* x) void {}
abstract member-signature get _identityHashCode() core::int*;
abstract member-signature method _instanceOf(dynamic instantiatorTypeArguments, dynamic functionTypeArguments, dynamic type) core::bool*;
abstract member-signature method _simpleInstanceOf(dynamic type) core::bool*;
abstract member-signature method _simpleInstanceOfTrue(dynamic type) core::bool*;
abstract member-signature method _simpleInstanceOfFalse(dynamic type) core::bool*;
abstract member-signature operator ==(dynamic other) core::bool*;
abstract member-signature get hashCode() core::int*;
abstract member-signature method toString() core::String*;
abstract member-signature method noSuchMethod(core::Invocation* invocation) dynamic;
abstract member-signature get runtimeType() core::Type*;
}
static method g1(self::C<core::num*>* c) void {
c.{self::C::f}(1.5);
}
static method g2(self::C<core::int*>* c) void {
c.{self::C::f}(1);
}
static method g3(self::C<core::num*>* c) void {
c.{self::C::f}(null);
}
static method main() dynamic {}