blob: daa996ec7651b11c2b10448cb52a13c46a471181 [file] [log] [blame]
// @dart = 2.9
class C {
C(this.x);
final x;
}
main() {}