blob: 64332d910d90d4e1d45b3a878997b8ea61f88bd7 [file] [log] [blame]
class C {
int? m1;
int m2 = 0;
C get property => this;
test() {}
int? operator [](int index) => 0;
void operator []=(int index, int value) {}
method() {}
}
class D {
D get property => this;
test() {}
int operator [](int index) => 0;
void operator []=(int index, int value) {}
}
main() {}