OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / crash37.C
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 }