blob: 2b0383ffd4186a3f738a7adcfdd0f84e8955175b [file] [log] [blame]
class Class {
int field = 0;
Class get next => this;
int operator [](int key) => key;
void operator []=(int key, int value) {}
}
main() {}
test(Class? c) {}
final bool inStrongMode = _inStrongMode();
bool _inStrongMode() {}
void throwsInStrong(void Function() f) {}