aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/c-testsuite/tests/single-exec/00126.c
blob: 8e48d35f84f7d4d12b595319ee50b6fcf8b45c2f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
int
main()
{
        int x;

        x = 3;
        x = !x;
        x = !x;
        x = ~x;
        x = -x;
        if(x != 2)
                return 1;
        return 0;
}