blob: 004b77650d28eb1522051bd570af68bae80eab9c [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
static method f<T extends core::Object>() 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 {}