1int foo(void);
2int foo(void)
3{
4	int r;
5
6	r = ({ goto label; label: 1; });
7	return r;
8}
9
10/*
11 * check-name: label-stmt-expr0
12 * check-command: test-linearize $file
13 * check-output-ignore
14 *
15 * check-output-excludes: ret\\.32\$
16 * check-output-contains: ret\\.32 *\\$1
17 */
18