blob: 31936877e5e76edbef804c7ce30ebad7b38dae53 [file]
// @dart = 2.9
class A {
final int x;
const A(this.x);
}
main() {}