view gcc/testsuite/g++.old-deja/g++.other/local3.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

// { 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;
}