repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
parse
/
crash32.C
blob
df6aa55a4a512cb3b75be0c9e05088533831e78a
1
// { dg-do compile }
2
struct Visitor;
3
4
struct Ast
5
{
6
virtual void accept (Visitor& v);
7
};
8
9
void
10
Ast::accept (Visitor& v)
11
{
12
v (*this); // { dg-error "no match for call" "" }
13
}