[Bug c++/96677] New: Compile error on valid code with variadic template function call

2020-08-18 Thread ivan.leonov.d at yandex dot ru
Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: ivan.leonov.d at yandex dot ru Target Milestone: --- Sample code: template < typename... TYPES > struct A { template < TYPES... types > void Get() { } }; void f()

[Bug c++/96676] Segmentation fault on parsing simple variadic template function call

2020-08-18 Thread ivan.leonov.d at yandex dot ru
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96676 --- Comment #1 from Ivan Leonov --- Output of gcc -v: Using built-in specs. COLLECT_GCC=/opt/wandbox/gcc-head/bin/g++ COLLECT_LTO_WRAPPER=/opt/wandbox/gcc-head/libexec/gcc/x86_64-pc-linux-gnu/11.0.0/lto-wrapper Target: x86_64-pc-linux-gnu Config

[Bug c++/96676] New: Segmentation fault on parsing simple variadic template function call

2020-08-18 Thread ivan.leonov.d at yandex dot ru
Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: ivan.leonov.d at yandex dot ru Target Milestone: --- Sample code: template < typename T, typename... TYPES > struct A { template < TYPES... types > void Get() {