1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00
cc65/test/val/bug1504.c

14 lines
290 B
C
Raw Normal View History

2021-05-17 12:40:09 +00:00
/* 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;
}