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
/
parse
/
crash37.C
blob
8320dfaa50fb59e9416e67e15280c7733dfeb6eb
1
// PR c++/31941
2
// { dg-do compile }
3
4
struct S
5
{
6
S() throw () { }
7
virtual ~S () throw ();
8
virtual const char* what () const throw ();
9
};
10
11
const char *
12
foo (S &e)
13
{
14
return e.what ().c_str (); // { dg-error "c_str.*S::what.*which is of non-class type" }
15
}