[fc78f7]: / test / types-struct-named-union.c  Maximize  Restore  History

Download this file

10 lines (9 with data), 65 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
struct test
{
	int a;
	int b;
	union {
		int c;
		int d;
	}x;
};