]> andersk Git - splint.git/blame - test/moreBufferTests2/arrayConstExpr.c
noexpand always false.
[splint.git] / test / moreBufferTests2 / arrayConstExpr.c
CommitLineData
30585c35 1
2/*@constant int MYSIZE=10@*/
3
4void 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.064872 seconds and 5 git commands to generate.