blob: c2daa0ff2861db99b3364c059445dd03de7cb92d [file] [log] [blame]
// PR debug/6387
// Verify that -g1 works with local class member functions.
void foo();
void bar() {
struct A { A() { foo(); } } a;
}