#include <stdio.h>

void func(struct { int x; } p)
{
    printf("%i\n", p.x);
}

int main(void) {
	func((struct { int x; }){8});
	return 0;
}
