blob: 8197c9364e6880dc39cc01f916b4f2045f4e7452 [file] [log] [blame]
// 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() {}
int SimQuery::SetMeshFile(char name[])
{
mesh = new C;// ERROR - .*
return 0; // needed to avoid warning of reaching end of non-void fn
}