blob: 3c7816ed8cf503690bc10e6b73cb392c66c9f49b [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class C extends core::Object {
default constructor •() void
: super core::Object::•()
;
method m<T extends core::Object>(core::int a, [self::C::m::T b = null]) self::C::m::T
return null;
}
static method main() dynamic {
core::double y = new self::C::•().{self::C::m}<core::double>(1, 2.0);
}