summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/local3.C
blob: 3879b141dc64e22d2f824bcedb6d1cc2d009a210 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// { dg-do run  }
// Bug: g++ lies about DECL_CONTEXT, so the backend thinks B::f is not
// function-local.
// Contributed by Jason Merrill <jason@cygnus.com>

struct A {
  virtual void f () = 0;
};

int main()
{
   struct B : public A {
     void f () { }
   }; 

   B b;
}