aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/parse/crash37.C
blob: 8320dfaa50fb59e9416e67e15280c7733dfeb6eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// PR c++/31941
// { dg-do compile }

struct S
{
  S() throw () { }
  virtual ~S () throw ();
  virtual const char* what () const throw ();
};

const char *
foo (S &e)
{
  return e.what ().c_str ();	// { dg-error "c_str.*S::what.*which is of non-class type" }
}