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