add regression test for c99 array range initializer.
This commit is contained in:
parent
ddee551034
commit
acf21e59f6
6
regress/usr.bin/xlint/lint1/test18.c
Normal file
6
regress/usr.bin/xlint/lint1/test18.c
Normal file
@ -0,0 +1,6 @@
|
||||
/* C9X array initializers */
|
||||
int foo[256] = {
|
||||
[2] = 1,
|
||||
[3] = 2,
|
||||
[4 ... 5] = 3
|
||||
};
|
Loading…
Reference in New Issue
Block a user