Commit 3e449f80 by Paolo Carlini Committed by Paolo Carlini

re PR c++/57820 ([DR 253] NSDMI and const objects)

2014-11-03  Paolo Carlini  <paolo.carlini@oracle.com>

	PR c++/57820
	* g++.dg/cpp0x/constexpr-ctor16.C: New.
	* g++.dg/cpp0x/constexpr-ctor17.C: Likewise.

From-SVN: r217035
parent 956623c1
2014-11-03 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/57820
* g++.dg/cpp0x/constexpr-ctor16.C: New.
* g++.dg/cpp0x/constexpr-ctor17.C: Likewise.
2014-11-03 Marc Glisse <marc.glisse@inria.fr>
PR tree-optimization/60770
......
// PR c++/57820
// { dg-do compile { target c++11 } }
struct C
{
int a = 2;
int b = a + 1;
};
C c;
constexpr C d = {};
// PR c++/57820
// { dg-do compile { target c++11 } }
struct C
{
int a = 2;
int b = a + 1;
constexpr C() {}
};
C c;
constexpr C d;
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