Files
ispc/tests_errors/shadow.ispc
Matt Pharr 186d0223d2 Fix AoS/SoA stdlib functions to match documentation
(i.e. actually remove the old offset parameter stuff now that
we can actually pass pointers.)
2011-12-03 22:44:16 -08:00

9 lines
107 B
Plaintext

// Symbol "a" shadows symbol declared in outer scope
void foo() {
int a;
{
int a;
}
}