blob: c9998b1d336e33c6cf60e74693d8001ec6b50cd8 [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>(self::C::m::T x) self::C::m::T
return x;
}
static method main() dynamic {
dynamic y = new self::C::•().m(42);
}