diff options
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/cpp0x/variadic-crash3.C | 32 |
2 files changed, 37 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 266bedc..c25c018 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -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 index 0000000..b825067 --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp0x/variadic-crash3.C @@ -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; +} |