smatch_data/kernel.unreachable.ignore: add BUG(), WARN_ON() and others
[smatch.git] / validation / linear / compound-literal02.c
blob6ed5809eb83ab7c22f8a3382ea41a1dd79ecaacf
1 struct bfs {
2 int a: 2;
3 int b: 30;
4 };
6 int bar(void)
8 struct bfs bf = { .a = 1, .b = 4 };
9 return (struct bfs[]){bf, { .a = 3, .b = 6}}[1].b;
13 * check-name: compound-literal02.c
14 * check-command: test-linearize -Wno-decl $file
16 * check-output-ignore
17 * check-output-contains: ret\\..*\\$6