blob: 47931b3a01a3f790596f115851e46b91c98f8dd5 [file] [log] [blame]
Chris Lattner6374a522002-02-17 06:42:02 +00001/* test that locals are renamed with . notation */
2
3void abc(void *);
4
5void Test5(double X) {
6 abc(&X);
7 {
8 int X;
9 abc(&X);
10 {
11 float X;
12 abc(&X);
13 }
14 }
15}
16