1 // PR debug/6387
2 // Verify that -g1 works with local class member functions.
3 
4 void foo();
bar()5 void bar() {
6   struct A { A() { foo(); } } a;
7 }
8