blob: 9ca2a676e2d26aa50804b1ea0aeff11a91f0d166 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
typedef F<T extends core::Object = dynamic> = (T) void;
class C<T extends core::Object = dynamic> extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
method f<U extends (self::C::T) void = dynamic>(self::C::f::U x) void {}
}
static method g(self::C<core::num> c) void {
c.{self::C::f}<(core::Object) void>((core::Object o) core::Null {});
}
static method test() void {
self::g(new self::C::•<core::int>());
}
static method main() void {}