blob: 77420673e2e93f634c17a094ea4eced48869695e [file] [log] [blame]
expect(expected, actual) {}
extension type I._(int it) {
I(int x, [int? y]) : it = x + (y ?? 42);
void m(String s, [int i = 1]) {}
}
extension type I2._(int it) {
I2(int x, {int? y}) : it = x + (y ?? 87);
void m(String s, {int i = 1}) {}
}
main() {}