aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/execute/980602-2.c
blob: 8ef23222d62edbce2512cd3e02afc2868d242ccc (plain)
1
2
3
4
5
6
7
8
9
10
11
struct {
    unsigned bit : 30;
} t;

int main()
{
    if (!(t.bit++))
	exit (0);
    else
	abort ();
}