summaryrefslogtreecommitdiff
path: root/support/regression/qct/0053-struct.c
blob: 912bcb64c42e895724d07cfdc28722c2042ef807 (plain)
1
2
3
4
5
6
7
8
9
10
11

int
main()
{
	struct T { int x; };
	{
		struct T s;
		s.x = 0;
		return s.x;
	}
}