blob: 6fc489d5fd2742545772d67c3faf322636ee3002 [file] [log] [blame]
library test;
import self as self;
static method test() dynamic {
dynamic x = 3;
x = "hi";
}
static method main() dynamic {
self::test();
}