foo(int i)1 static int foo(int i __attribute__((unused))) { return 0; }
main(void)2 int main(void) { return foo(__builtin_ctz((unsigned int)42)); }
3