Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20060208-1.c
blob01e471a7b0ca7a93bdc20563b87a5276b2f87e52
1 /* PR middle-end/26092 */
2 typedef __SIZE_TYPE__ size_t;
3 extern void *malloc (size_t);
5 void *(*const foo) (size_t) = malloc;
7 void *test (void)
9 return (*foo) (3);