etc/protocols - sync with NetBSD-8
[minix.git] / tests / usr.bin / xlint / lint1 / d_compound_literals1.c
blobcd1987ae17de65d8750f2dff162c749d7666a53c
1 /* compound literals */
3 struct p {
4 short a, b, c, d;
5 };
7 foo()
9 struct p me = (struct p) {1, 2, 3, 4};
10 me.a = me.b;