blob: 9364af3012f81c395bede630396e9ed87fcae8d0 [file] [log] [blame]
library test;
import self as self;
static method test() dynamic {
has-declared-initializer dynamic x = null;
x = "hi";
x = 3;
}
static method main() dynamic {
self::test();
}