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