Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / warn / Woverloaded-1.C
blob65a408b47d0e190358618c6aed2825681d8f01fe
1 /* { dg-options "-Woverloaded-virtual" } */
3 class Base {
4 public:
5   virtual ~Base() {
6   }
7 };
9 class Derived: public Base {
10 public:
11   int Base() { // There should be no error here.
12     return 5;
13   }
16 int main() {