new testcase

llvm-svn: 39233
This commit is contained in:
Chris Lattner 2006-12-02 07:59:33 +00:00
parent c6ad8131dd
commit 784b168c92
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
/* RUN: clang %s -parse-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));
}