blob: 43706271a882e20151c45ba5f3dfa381e2c6f5c7 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class C extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
method m<T extends core::Object = dynamic>(self::C::m::T x) self::C::m::T
return x;
}
class D extends self::C {
synthetic constructor •() void
: super self::C::•()
;
method m(dynamic x) dynamic
return x;
}
static method main() dynamic {
core::int y = new self::D::•().m<core::int>(42);
core::print(y);
}