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