re PR c++/60153 (internal compiler error: in dependent_type_p, at cp/pt.c:21951)
authorPaolo Carlini <paolo.carlini@oracle.com>
Fri, 6 Oct 2017 10:06:14 +0000 (10:06 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Fri, 6 Oct 2017 10:06:14 +0000 (10:06 +0000)
2017-10-06  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/60153
* g++.dg/cpp0x/variadic-crash3.C: New.

From-SVN: r253484

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp0x/variadic-crash3.C [new file with mode: 0644]

index 266bedc792ae01acccbb3748a8feb15b99d3f6cb..c25c0189fc19bbee7e95ff3cc5db63b65fb30e7f 100644 (file)
@@ -1,3 +1,8 @@
+2017-10-06  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       PR c++/60153
+       * g++.dg/cpp0x/variadic-crash3.C: New.
+
 2017-10-06  Jakub Jelinek  <jakub@redhat.com>
 
        PR tree-optimization/82434
diff --git a/gcc/testsuite/g++.dg/cpp0x/variadic-crash3.C b/gcc/testsuite/g++.dg/cpp0x/variadic-crash3.C
new file mode 100644 (file)
index 0000000..b825067
--- /dev/null
@@ -0,0 +1,32 @@
+// PR c++/60153
+// { dg-do compile { target c++11 } }
+
+enum class foo :int {x,y,z};
+
+template <int a, foo b>
+class A
+{
+public:
+  A()
+  {
+  }
+};
+
+template <typename T>
+struct B
+{
+  typedef T value_type;
+  static const T val;
+};
+
+template <typename... B>
+struct madscience_intitializer
+{
+  template <typename B::value_type... args>
+  using ret_type = A<args...>;
+};
+
+int main()
+{
+  madscience_intitializer<B<int>,B<foo> >::ret_type<1,foo::y> a;
+}