aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/debug/minimal1.C
blob: c2daa0ff2861db99b3364c059445dd03de7cb92d (plain)
1
2
3
4
5
6
7
// PR debug/6387
// Verify that -g1 works with local class member functions.

void foo();
void bar() {
  struct A { A() { foo(); } } a;
}