aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/overload1.C
blob: 5658fdd8f9bf4f9f4b38a28b0c782ea64673e750 (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
};

main ()
{
  Bar b;

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