[Bug libstdc++/108490] circle compiler support for libstdc++

2023-06-08 Thread redi at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108490 Jonathan Wakely changed: What|Removed |Added Resolution|--- |MOVED Status|UNCONFIRMED

[Bug libstdc++/108490] circle compiler support for libstdc++

2023-01-22 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108490 --- Comment #10 from Jakub Jelinek --- (In reply to Jonathan Wakely from comment #8) > See PR101782 where you figured out the problem in the grammar :-) You know, my memory has sometimes smaller and sometimes bigger issues ;)

[Bug libstdc++/108490] circle compiler support for libstdc++

2023-01-22 Thread redi at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108490 --- Comment #9 from Jonathan Wakely --- For completeness: template concept C = true; struct S { template requires C [[nodiscard]] friend constexpr bool bar (const S &, const T &) { return true; } }; void foo () { S s; bar (s, 0); }

[Bug libstdc++/108490] circle compiler support for libstdc++

2023-01-22 Thread redi at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108490 --- Comment #8 from Jonathan Wakely --- (In reply to Jakub Jelinek from comment #5) > (In reply to Jonathan Wakely from comment #2) > > Yes. The attribute has to be there, so it's a Circle bug if it doesn't > > support that grammar. > > Why can

[Bug libstdc++/108490] circle compiler support for libstdc++

2023-01-22 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108490 --- Comment #7 from Jakub Jelinek --- Though, if I try the above short testcase on godbolt with C++ (Circle), build 131 still rejects it but Latest accepts, so most likely they have fixed it already.

[Bug libstdc++/108490] circle compiler support for libstdc++

2023-01-22 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108490 --- Comment #6 from Jakub Jelinek --- (In reply to Jakub Jelinek from comment #5) > (In reply to Jonathan Wakely from comment #2) > > Yes. The attribute has to be there, so it's a Circle bug if it doesn't > > support that grammar. > > Why can't

[Bug libstdc++/108490] circle compiler support for libstdc++

2023-01-22 Thread jakub at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108490 Jakub Jelinek changed: What|Removed |Added CC||jakub at gcc dot gnu.org --- Comment #5

[Bug libstdc++/108490] circle compiler support for libstdc++

2023-01-22 Thread contact at siddheshkukade dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108490 --- Comment #4 from Siddhesh Bhupendra Kukade --- Hi, I'm new to bugzilla could you guys please tell me where to see the source code, thanks.

[Bug libstdc++/108490] circle compiler support for libstdc++

2023-01-22 Thread contact at siddheshkukade dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108490 Siddhesh Bhupendra Kukade changed: What|Removed |Added CC||contact at siddheshkukade do

[Bug libstdc++/108490] circle compiler support for libstdc++

2023-01-22 Thread redi at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108490 --- Comment #2 from Jonathan Wakely --- Yes. The attribute has to be there, so it's a Circle bug if it doesn't support that grammar.

[Bug libstdc++/108490] circle compiler support for libstdc++

2023-01-21 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108490 --- Comment #1 from Andrew Pinski --- This seems like a bug in circle ...