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