1 // Test for -var-info-path-expression syntax error
2 // caused by PR 11912
3 #include <string.h>
4 #include <stdio.h>
5 
6 class A
7 {
8 	public:
9 		int a;
10 };
11 
12 class C : public A
13 {
14 	public:
C()15 		C()
16 		{
17 			a = 5;
18 		};
testLocation()19 		void testLocation()
20 		{
21 			z = 1;
22 		};
23 		int z;
24 };
25 
main()26 int main()
27 {
28 	C c;
29 	c.testLocation();
30 	return 0;
31 }
32