aboutsummaryrefslogtreecommitdiff
path: root/test/struct-copy.c
blob: 33084aa0cca2c91da45bd2abd5da49356408cc32 (plain)
1
2
3
4
5
6
7
8
struct s {
	char s[5];
	float f;
} x;

void f(void) {
	struct s y = x;
}