]> andersk Git - splint.git/blame - test/argorder3.c
noexpand always false.
[splint.git] / test / argorder3.c
CommitLineData
885824d3 1int 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.227225 seconds and 5 git commands to generate.