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()
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
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() {