summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/overload1.C
blob: e5040fdc7cc2f3b473ca0e0c8f56ac52a9dd50df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Build don't link: 
// GROUPS passed overloading
class Foo
{
public:
  int f (void);
};

class Bar : public Foo
{
public:
      int f (int); // ERROR - candidates are
};

int main ()
{
  Bar b;

  b.f ();// ERROR - 
  b.f (10);
}