repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git]
/
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
}