blob: 601a1eac9ba41303389cbc4dfca12d5f9b061204 [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 f<T extends core::Object>(() self::C::f::T g) core::List<self::C::f::T>
return <self::C::f::T>[g.call()];
}
static method main() dynamic {
dynamic v = new self::C::•().f<core::int>(() dynamic {
return 1;
});
}