Commit 57436cb1 by Martin Sebor Committed by Martin Sebor

PR c++/60517 - warning/error for taking address of member of a temporary object

testsuite/ChangeLog:
	* g++.dg/pr60517.C: New test.

From-SVN: r274130
parent 05989533
2019-08-05 Martin Sebor <msebor@redhat.com>
PR c++/60517
* g++.dg/pr60517.C: New test.
2019-08-02 Tom Honermann <tom@honermann.net>
PR c++/88095
......
// PR c++/60517 - warning/error for taking address of member of a temporary
// object
// { dg-do compile }
class B
{
public:
double x[2];
};
class A
{
B b;
public:
B getB () { return b; }
};
double foo (A a)
{
double * x = &(a.getB().x[0]); // { dg-error "taking address of rvalue" }
return x[0];
}
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