OSDN Git Service

PR c++/19797
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / debug / minimal1.C
1 // PR debug/6387
2 // Verify that -g1 works with local class member functions.
3
4 void foo();
5 void bar() {
6   struct A { A() { foo(); } } a;
7 }