foo(void * i)1 static int foo(void * i __attribute__((unused))) { return 0; }
main(void)2 int main(void) { return foo(__builtin_alloca(1)); }
3