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