forked from OSchip/llvm-project
parent
c6ad8131dd
commit
784b168c92
|
@ -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));
|
||||
}
|
||||
|
Loading…
Reference in New Issue