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