[Bug c++/95328] structured binding of template type inside template function is reported as "incomplete class type"

2021-08-05 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95328 Andrew Pinski changed: What|Removed |Added Known to work||10.2.0, 8.5.0, 9.4.0 Known to

[Bug c++/95328] structured binding of template type inside template function is reported as "incomplete class type"

2021-08-05 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95328 Andrew Pinski changed: What|Removed |Added CC||janniksilvanus at gmail dot com ---

[Bug c++/95328] structured binding of template type inside template function is reported as "incomplete class type"

2020-09-17 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95328 Jakub Jelinek changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug c++/95328] structured binding of template type inside template function is reported as "incomplete class type"

2020-09-16 Thread cvs-commit at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95328 --- Comment #6 from CVS Commits --- The releases/gcc-9 branch has been updated by Jakub Jelinek : https://gcc.gnu.org/g:8efa945b308307fd9b0313705f5826a8499de405 commit r9-8900-g8efa945b308307fd9b0313705f5826a8499de405 Author: Jakub Jelinek

[Bug c++/95328] structured binding of template type inside template function is reported as "incomplete class type"

2020-06-14 Thread cvs-commit at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95328 --- Comment #5 from CVS Commits --- The releases/gcc-10 branch has been updated by Jakub Jelinek : https://gcc.gnu.org/g:808f30b0772733886cefe7dead50862c169bcb2b commit r10-8295-g808f30b0772733886cefe7dead50862c169bcb2b Author: Jakub Jelinek

[Bug c++/95328] structured binding of template type inside template function is reported as "incomplete class type"

2020-06-05 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95328 Jakub Jelinek changed: What|Removed |Added Status|UNCONFIRMED |ASSIGNED Last reconfirmed|

[Bug c++/95328] structured binding of template type inside template function is reported as "incomplete class type"

2020-05-28 Thread cvs-commit at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95328 --- Comment #3 from CVS Commits --- The master branch has been updated by Jakub Jelinek : https://gcc.gnu.org/g:3d8d5ddb539a5254c7ef83414377f4c74c7701d4 commit r11-706-g3d8d5ddb539a5254c7ef83414377f4c74c7701d4 Author: Jakub Jelinek Date:

[Bug c++/95328] structured binding of template type inside template function is reported as "incomplete class type"

2020-05-26 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95328 Jakub Jelinek changed: What|Removed |Added CC||jakub at gcc dot gnu.org --- Comment #2

[Bug c++/95328] structured binding of template type inside template function is reported as "incomplete class type"

2020-05-26 Thread stefaan.deroeck at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95328 --- Comment #1 from Stefaan De Roeck --- During further development, I nevertheless did find a shorter snippet to reproduce the issue: template struct Data { int a, b; }; template void func() { auto [a, b] = Data(); } int main() { func();