blob: 53b9899f3d6b17a50250c9c3961a07170b503e8c [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<dynamic>());
assert(self::f<dynamic>(), self::f<dynamic>());
}
static method main() dynamic {}