]> andersk Git - splint.git/blob - test/arraydims.c
noexpand always false.
[splint.git] / test / arraydims.c
1 static int daytab[2][13] = {
2   {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
3   {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31, 52 } /* error */
4 };
5
6 static int daytab2[3][2][13] = {
7   { {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
8     {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31, 52 } }, /* error */
9   { {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
10     {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 } } ,
11   { {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
12     {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 } }
13 };
This page took 0.159763 seconds and 5 git commands to generate.