1struct bar {
2	int x;
3	int y[2];
4};
5struct bar bar(void);
6
7int foo(void)
8{
9	int x = bar().x;
10	return x & 0;
11}
12
13/*
14 * check-name: kill-slice
15 * check-command: test-linearize -Wno-decl $file
16 * check-output-ignore
17 *
18 * check-output-excludes: slice\\.
19 */
20