1struct s {
2	int f:3;
3};
4
5int preinc(void)
6{
7	struct s s = { 7 };
8	return ++s.f;
9}
10
11/*
12 * check-name: bitfield-preinc
13 * check-description: ++X is equivalent to X+=1
14 * check-command: test-linearize -Wno-decl $file
15 *
16 * check-output-ignore
17 * check-output-contains: ret.32 *\\$0
18 */
19