mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
10 lines
200 B
C
10 lines
200 B
C
/* RUN: %clang_cc1 %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));
|
|
}
|
|
|