blob: 17b048c3c690c72829b6e36e643fd4e1589ab67a [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class Foo<T extends core::Pattern = dynamic> extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
method method<U extends self::Foo::T = dynamic>(self::Foo::method::U u) self::Foo::method::U
return u;
}
static method main() dynamic {
new self::Foo::•<core::String>().method(42);
}