blob: 56259bde4937664245e66df27b2b7722c8731579 [file] [log] [blame]
library /*isNonNullableByDefault*/;
import self as self;
import "dart:core" as core;
abstract class A<T extends core::Object? = dynamic> extends core::Object {
synthetic constructor •() self::A<self::A::T%>
: super core::Object::•()
;
abstract method baz() self::A::T%;
method bar(generic-covariant-impl self::A::T% value) dynamic {}
method barInt(core::int value) dynamic {}
method foo() dynamic {
late self::A::T% value;
late core::int intValue;
() Null result = () Null {
this.{self::A::bar}(value);
this.{self::A::barInt}(intValue);
};
(() Null {
value = this.{self::A::baz}();
intValue = 42;
}).call();
return result;
}
}
static method main() dynamic {}