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