blob: 5ab964738b9c750eb84576b6d2d88f4c602fd075 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
static method f<T extends core::Object = dynamic>(core::List<self::f::T> s) self::f::T
return null;
static method test() dynamic {
core::String x = self::f<dynamic>(<dynamic>["hi"]);
core::String y = self::f<dynamic>(<dynamic>[42]);
}
static method main() dynamic {}