local variables in expressions

This commit is contained in:
pommicket 2022-02-05 19:41:45 -05:00
parent 41f122f01e
commit a61c4f88f9
3 changed files with 32 additions and 3 deletions

View file

@ -19,6 +19,7 @@ int h(void) {
struct {
char a,b;
} P[] = {1,2,3,4,5};
int *Y = x;
static int marker = 0x12345678;
return 5;
}