Files
ispc/tests_errors/redeclare.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

7 lines
78 B
Plaintext

// Ignoring redeclaration of symbol "a"
void foo() {
int a;
int a;
}