1 2 3 4 5 6
void f(double ){} int main(void) { _Generic((1.0), float: f , default: f, default: f )(1.0); } #pragma cake diagnostic check "-E1570"