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