]> andersk Git - splint.git/blob - test/argorder3.c
Fixed manual csvoverwrite.
[splint.git] / test / argorder3.c
1 int f (void)
2 {
3   int i = 3;
4   int j;
5   int a[10];
6
7   i = i++;        /* bad */
8   a[i] = i++;     /* bad */
9   a[i++] = i;     /* bad */ 
10   j = i++ * i;    /* bad */
11   j = i * i++;    /* bad */
12   j += --i * ++i; /* bad * 2 */
13 }
This page took 0.113296 seconds and 5 git commands to generate.