2014-04-17 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/59200
* g++.dg/cpp0x/alias-decl-42.C: New.
From-SVN: r209499
+2014-04-17 Paolo Carlini <paolo.carlini@oracle.com>
+
+ PR c++/59200
+ * g++.dg/cpp0x/alias-decl-42.C: New.
+
2014-04-17 Pat Haugen <pthaugen@us.ibm.com>
* gcc.target/powerpc/ti_math1.c: New.
gcc.dg/plugin/one_time_plugin.c, gcc.dg/plugin/selfasign.c: Adjust.
2014-04-17 Trevor Saunders <tsaunders@mozilla.com>
-
+
* g++.dg/plugin/dumb_plugin.c, g++.dg/plugin/selfassign.c,
gcc.dg/plugin/one_time_plugin.c, gcc.dg/plugin/selfassign.c: Adjust.
--- /dev/null
+// PR c++/59200
+// { dg-do compile { target c++11 } }
+
+struct A
+{
+ static constexpr bool value = true;
+};
+
+template<typename T>
+struct B
+{
+ template<typename U>
+ using C = A;
+};
+
+template<typename T>
+template<typename U>
+ const bool B<T>::C<U>::value; // { dg-error "too many" }