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

13 lines
147 B
C

struct s { char c1, c2; };
void foo (struct s s)
{
static struct s s1;
s1 = s;
}
int main ()
{
static struct s s2;
foo (s2);
exit (0);
}