tcc-65816/test/tests/medce-1.c
2017-06-09 13:52:12 +02:00

34 lines
294 B
C

extern void abort (void);
extern void link_error (void);
static int ok = 0;
void bar (void)
{
ok = 1;
}
void foo(int x)
{
switch (x)
{
case 0:
if (0)
{
//link_error();
case 1:
bar();
}
}
}
int main()
{
foo (1);
if (!ok)
abort ();
return 0;
}