blob: 19120e23cc3639b7b0d1fd5563d136599168dfad [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 throw "";
static method test() void {
assert(self::f<core::bool>());
assert(self::f<core::bool>(), self::f<dynamic>());
}
static method main() dynamic {}