#include <stdio.h>

struct test { 
	int a;
	int b;
} g_test2;

int main(void) {

	struct test test1 = {
		.a = 5,
		.b = 5
	};
	
	g_test2 = (struct test) {
		.a = 5,
		.b = 5
	};

	
	return 0;
}
