(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.other/
local3.C
// { 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;
}