Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / parse / crash32.C
blobdf6aa55a4a512cb3b75be0c9e05088533831e78a
1 // { dg-do compile }
2 struct Visitor;
4 struct Ast
6   virtual void accept (Visitor& v);
7 };
9 void
10 Ast::accept (Visitor& v)
12   v (*this); // { dg-error "no match for call" "" }