]> andersk Git - splint.git/blobdiff - test/arrayinit.c
Changed 3.0.1.6 to 3.0.1.7 for /doc
[splint.git] / test / arrayinit.c
index ff985b9c0084551be1129d739414789dfb3e8cd9..215f56a99663c5eeb384f2f36be529cdd27a7076 100644 (file)
@@ -12,3 +12,6 @@ char cs2[3] = "abcd"; /* gcc warns for this with -Wall */ /* stringliteraltoolon
 char cs3[3] = "a"; /* stringliteral smaller (not on default) */ 
 
 char csx[3][3] = { { 'a', 'b', 'c' } , "def", "gasdf" } ; /* 2 errors */
+
+int a2[][2] = {{1,2},{3,4},{5,6}};
+int a3[][2] = {{1,2},{3,4,5},{5,6}};
This page took 0.066658 seconds and 4 git commands to generate.