blob: df6aa55a4a512cb3b75be0c9e05088533831e78a [file] [log] [blame]
// { dg-do compile }
struct Visitor;
struct Ast
{
virtual void accept (Visitor& v);
};
void
Ast::accept (Visitor& v)
{
v (*this); // { dg-error "no match for call" "" }
}