blob: db32f325866f442e403dbb3d51e0c63ef28be114 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
static field dynamic v = <dynamic>[self::f, self::g];
static method f({core::int x = null}) core::int
return null;
static method g({core::int x = null}) core::String
return null;
static method main() dynamic {
self::v;
}