blob: db9a98b391e602825a6411cc8a5113bbb7068103 [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:241/* RUN: %clang_cc1 %s -ast-print
Chris Lattner784b1682006-12-02 07:59:332 */
3
4void 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