* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / Wdtor1.C
blobe376017deb339ff21a9db0575ef4af4738f6c8b4
1 // PR c++/62232
2 // { dg-do compile { target c++11 } }
3 // { dg-options "-Wnon-virtual-dtor" }
5 class base
7 protected:
8   ~base () {}
9   virtual void foo (){};
11 class derive final : public base