blob: 80f52418eabb26041cb35e783c5da0c92f081c69 [file] [log] [blame]
// https://github.com/dart-lang/sdk/issues/50007
class C {
C(({int n, String s}) this.x);
C({({int n, String s}) this.x});
C({required ({int n, String s}) this.x});
C(({int n, String s})? this.x);
C({({int n, String s})? this.x});
C({required ({int n, String s})? this.x});
}