[Bug c++/81866] [8 Regression] ICE with a default template parameter which is a template class nested in a template class

2021-03-04 Thread soko.slav at yandex dot ru via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81866 --- Comment #9 from Sokolov Viacheslav --- Looks like it is fixed on trunk along with https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96474

[Bug c++/81866] [8 Regression] ICE with a default template parameter which is a template class nested in a template class

2021-02-11 Thread soko.slav at yandex dot ru via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81866 --- Comment #8 from Sokolov Viacheslav --- looks like the following is the same bug: https://godbolt.org/z/1vTqs3 template struct A { template struct B { }; }; A<>::B b; results in (on trunk) : In substitution of 'template

[Bug c++/96474] Internal compiler error with template struct inside template struct

2021-02-11 Thread soko.slav at yandex dot ru via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96474 Sokolov Viacheslav changed: What|Removed |Added CC||soko.slav at yandex dot ru --- Comm