blob: 046bb906c1cd66ebf46935c674c0f6e688594091 [file] [log] [blame]
class A {
int a = 42;
late int b = (this.a * 2) >> 1;
foo(late int x) {}
}
bar(late int x) {}
baz() {}
hest() async {}
fisk() async {}
class B {
late final int x = 42;
const B();
}
class C {
late final int x;
initVars() {}
}
main() {}