blob: e5f5e46f10b38b617b35edb901a3ff7e972c6ac6 [file] [log] [blame]
void exhaustiveSwitch(bool b) {}
void nonExhaustiveSwitch1(bool b) {}
void nonExhaustiveSwitch2(bool b) {}
void nonExhaustiveSwitchWithDefault(bool b) {}
void exhaustiveNullableSwitch(bool? b) {}
void nonExhaustiveNullableSwitch1(bool? b) {}
void nonExhaustiveNullableSwitch2(bool? b) {}
void unreachableCase1(bool b) {}
void unreachableCase2(bool b) {}
void unreachableCase3(bool? b) {}