(i.e. actually remove the old offset parameter stuff now that we can actually pass pointers.)
9 lines
107 B
Plaintext
9 lines
107 B
Plaintext
// Symbol "a" shadows symbol declared in outer scope
|
|
|
|
void foo() {
|
|
int a;
|
|
{
|
|
int a;
|
|
}
|
|
}
|