d_compound_literals1.c revision 302408
1/* compound literals */
2
3struct p {
4	short a, b, c, d;
5};
6
7foo()
8{
9	struct p me = (struct p) {1, 2, 3, 4};
10	me.a = me.b;
11}
12