add test for issue #1504

This commit is contained in:
mrdudz 2021-05-17 14:40:09 +02:00
parent d736032675
commit 4a57656f69
1 changed files with 13 additions and 0 deletions

13
test/val/bug1504.c Normal file
View File

@ -0,0 +1,13 @@
/* bug #1504 - Some compilation failures */
#include <stdio.h>
int main(void)
{
int i = 0, *p = &i;
switch (i) case 0: case 1: i = 21; /* Should be OK but fails */
p++[0] += 21; /* Should be OK but fails */
printf("%d\n", i);
return i != 42;
}