This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: c++/9315: g++ doesn't create any code for this testcase


reichelt@igpm.rwth-aachen.de wrote:
Synopsis: g++ doesn't create any code for this testcase

State-Changed-From-To: open->feedback
State-Changed-By: reichelt
State-Changed-When: Wed Jan 15 02:04:14 2003
State-Changed-Why:
    The testcase somehow got lost.
    Could you please send it to me so that I can attach
    it to the problem report?
See the attachment.


Regards

Harri
class fix
{
public:
	friend void operator+(const fix&, double);
	operator double() const;
};
int testcase()
{
	fix   a;
	float b;

	a+b;

	return 0;
}

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]