2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / 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() {