New testcase, for PR 115
[oota-llvm.git] / test / CFrontend / 2002-02-16-RenamingTest.c
1 /* test that locals are renamed with . notation */
2
3 void abc(void *);
4
5 void Test5(double X) {
6   abc(&X);
7   {
8     int X;
9     abc(&X);
10     {
11       float X;
12       abc(&X);
13     }
14   }
15 }
16