]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/indent/tests/struct.0
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
[FreeBSD/FreeBSD.git] / usr.bin / indent / tests / struct.0
1 /* $FreeBSD$ */
2
3 int f(struct x *a);
4
5 /* See r303485 */
6 void
7 t(void)
8 {
9         static const struct {
10                 int     a;
11                 int     b;
12         } c[] = {
13                 { D, E },
14                 { F, G }
15         };
16 }
17
18 void u(struct x a) {
19         int b;
20         struct y c = (struct y *)&a;
21 }