aboutsummaryrefslogtreecommitdiff
path: root/test/initializer-empty-struct.c
blob: 01538f515ea3dc854db1848b3181673ce78973d7 (plain)
1
2
3
4
5
struct s {float x; long y;};
struct s s = {};
void f(void) {
	struct s t = {};
}