Commit 79cc2986 by Neil Booth Committed by Neil Booth

* g++.dg/parse/parse4.C: New test.

From-SVN: r60728
parent 54ea87db
2003-01-01 Neil Booth <neil@daikokuya.co.uk>
* g++.dg/parse/parse4.C: New test.
2003-01-01 Neil Booth <neil@daikokuya.co.uk>
* g++.dg/parse/parse3.C: New test.
2003-01-01 Neil Booth <neil@daikokuya.co.uk>
......
/* PR c++/88 */
/* { dg-do compile } */
class Hvec
{
public:
Hvec(double x, double y, double z);
~Hvec();
};
class Camera1
{
public:
Camera1(const Hvec &basepos=Hvec(0.0,0.0,0.0));
~Camera1();
};
class Camera2
{
public:
Camera2(const Hvec &basepos);
inline Camera2() { Camera2(Hvec(0.0,0.0,0.0)); };
~Camera2();
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment