~ubuntu-branches/ubuntu/quantal/aspectc++/quantal

1
2
3
4
5
6
7
8
9
10
void bar( void (__stdcall *)() );     // <= wrong syntax tree
//void bar( void (__stdcall *arg)() );  // <= works, correct syntax tree

void __stdcall foo() {
}

int main() {
  bar( foo );
  return 0;
}