1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-27 22:12:47 +01:00
llvm-mirror/test/Regression/CFrontend/2002-02-16-RenamingTest.c
Chris Lattner 1233cd5217 New testcase
llvm-svn: 1768
2002-02-17 06:42:02 +00:00

17 lines
182 B
C

/* test that locals are renamed with . notation */
void abc(void *);
void Test5(double X) {
abc(&X);
{
int X;
abc(&X);
{
float X;
abc(&X);
}
}
}