blob: cb8965126d5b7e800b4203c74521b0a75820b5a7 [file] [log] [blame]
// @dart = 2.9999
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() { }