rename -parse-ast-dump to -ast-dump remove -parse-ast, which is redundant with -fsyntax-only llvm-svn: 42852
11 lines
195 B
C
11 lines
195 B
C
/* RUN: clang %s -ast-print
|
|
*/
|
|
|
|
void foo() {
|
|
int X;
|
|
X = sizeof(void (*(*)())());
|
|
X = sizeof(int(*)(int, float, ...));
|
|
X = sizeof(void (*(int arga, void (*argb)(double Y)))(void* Z));
|
|
}
|
|
|