cp_error038: Parser does not allow attributes in function typedefs
[cparser] / parsetest / cp_error038.c
1 typedef void(__attribute__((__stdcall__)) *callback)(void);
2
3 int main(void)
4 {
5         return 0;
6 }