OSDN Git Service

PR c++/39554
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / warn / Wnvdtor.C
1 // { dg-options "-Wnon-virtual-dtor" }
2
3 extern "Java"
4 {
5   class Foo
6   {
7   public:
8     virtual void bar( void);
9   };
10 }