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