summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/crash9.C
blob: a4155ef6bb5fe65df18ae19d2602f2f0abcc18e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Build don't link: 
// GROUPS passed old-abort
class A {};

class SimQuery
{
public:
  SimQuery();
  ~SimQuery();
  int SetMeshFile(char name[]);
protected:
  A& scaling;
  A* mesh;
};

SimQuery::SimQuery():scaling(A) {}// ERROR - .*

SimQuery::~SimQuery() {}// ERROR - 

int SimQuery::SetMeshFile(char name[])
{// ERROR - 
  mesh = new C;// ERROR - .*
  return 0; // needed to avoid warning of reaching end of non-void fn
}