blob: bd07f131632c5d6e027f4fc877894adbb0088643 [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>(core::int a, {core::String b = null, self::C::m::T c = null}) self::C::m::T
return null;
}
static method main() dynamic {
core::double y = new self::C::•().{self::C::m}<core::double>(1, b: "bbb", c: 2.0);
}