aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/c-testsuite/tests/single-exec/00153.c
blob: eabbaaefe71b504cd6670fcbf742065a2f13d96c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#define x f
#define y() f

typedef struct { int f; } S;

int
main()
{
	S s;

	s.x = 0;
	return s.y();
}