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