Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | /* RUN: clang %s -parse-ast-print |
2 | */ | ||||
3 | |||||
4 | void foo() { | ||||
5 | int X; | ||||
6 | X = sizeof(void (*(*)())()); | ||||
7 | X = sizeof(int(*)(int, float, ...)); | ||||
8 | X = sizeof(void (*(int arga, void (*argb)(double Y)))(void* Z)); | ||||
9 | } | ||||
10 |