blob: 1cf473a61ba10bd1d2473c1c2cf930963b4b8de5 [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) {}