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
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
template
/
crash28.C
blob
e8b2bbb298530a2b0bd8273bdd44944282bf0033
1
// PR c++/18445
2
3
struct a
4
{
5
int what();
6
};
7
void g(void*);
8
template<class T>
9
void f()
10
{
11
a ex;
12
g(ex.what); // { dg-error "" }
13
}