shithub: scc

ref: 4506a7ac70b36365f7448c3fe3840550f3230874
dir: /cc1/tests/test015.c/

View raw version
/*
name: TEST015
description: Stress namespace mechanism
error:
test015.c:52: error: label 's' already defined
output:
S8	s2
M9	I	"s
S5	s1
M6	I	"s
M10	S8	"s1
S2	s
M11	S5	"s
G12	S2	"s2
G14	F	"main
{
\
	j	L15
A16	S2	"s
A17	I	"s
	r	A17
	r	A16	M11	.S5	M6	.I	A16	M11	.S5	M10	.S8	M9	.I	+I
L15
*/

typedef struct s s;

struct s {
	struct s1 {
		int s;
		struct s2 {
			int s;
		} s1;
	} s;
} s2;

#define s s

int
main(void)
{
#undef s
	goto s;
	struct s s;
		{
			int s;
			return s;
		}
	return s.s.s + s.s.s1.s;
	s:
		{
			s: return 0;
		}
}