#include <stdbool.h> void work(bool yes) { } int main(int argc, const char *argv[]) { if (true) work(false) return 0; }