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