2012-01-01 Paolo Carlini <paolo.carlini@oracle.com>
* g++.dg/cpp0x/constexpr-delegating2.C: Add missing piece.
From-SVN: r182774
-2011-12-31 Fabien ChĂȘne <fabien@gcc.gnu.org>
+2012-01-01 Paolo Carlini <paolo.carlini@oracle.com>
+
+ * g++.dg/cpp0x/constexpr-delegating2.C: Add missing piece.
+
+2012-01-01 Fabien ChĂȘne <fabien@gcc.gnu.org>
* g++.old-deja/g++.brendan/crash25.C: Adjust.
* g++.old-deja/g++.brendan/crash56.C: Likewise.
: B(A<V...>::a)
{ }
};
+
+constexpr B b1 = A<10, 20, 30>::a;
+constexpr B b2 = A<10, 20, 30>();