mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 04:10:49 -05:00
10 lines
198 B
C
10 lines
198 B
C
/* RUN: clang-cc %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));
|
|
}
|
|
|