blob: d5be830594501a8ab7794eb9abea7fc6e7108383 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class C extends core::Object {
synthetic constructor •() self::C
: super core::Object::•()
;
method f<T extends core::Object? = dynamic>(() self::C::f::T% g) core::List<self::C::f::T%>
return core::_GrowableList::_literal1<self::C::f::T%>(g(){() self::C::f::T%});
}
static method main() dynamic {
core::List<core::int> v = new self::C::•().{self::C::f}<core::int>(() core::int {
return 1;
}){(() core::int) core::List<core::int>};
}