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