blob: 92b04c4d02b5f8e06d8e211b14aded75c52199d1 [file] [log] [blame]
// { dg-do assemble }
// GROUPS passed overloading
class Foo
{
public:
int f (void);
};
class Bar : public Foo
{
public:
int f (int); // { dg-message "candidates" }
};
int main ()
{
Bar b;
b.f ();// { dg-error "no matching" }
b.f (10);
}