blob: cfbd6240b7e80a065f08a48846c6c8323fd6fd7d [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
static method f<T extends core::Object = dynamic>() self::f::T
return null;
static method test() void {
assert(self::f<core::bool>());
assert(self::f<core::bool>(), self::f<dynamic>());
}
static method main() dynamic {}