]> andersk Git - splint.git/blob - test/moreBufferTests2/arrayConstExpr.c
noexpand always false.
[splint.git] / test / moreBufferTests2 / arrayConstExpr.c
1
2 /*@constant int MYSIZE=10@*/
3
4 void arrayExpr()
5 {
6   char string1[2 + 4];
7
8   char string2 [MYSIZE + 1];
9
10   string1[5] = 'd';
11   string2[MYSIZE - 1] = 'w';
12  string2[MYSIZE] = 'w';
13 }
This page took 0.037215 seconds and 5 git commands to generate.