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