public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/107953] New: Greater-than operator misparsed inside a lambda expression used as a template argument
@ 2022-12-02 17:32 majerech.o at gmail dot com
  2022-12-02 20:28 ` [Bug c++/107953] " pinskia at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: majerech.o at gmail dot com @ 2022-12-02 17:32 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107953

            Bug ID: 107953
           Summary: Greater-than operator misparsed inside a lambda
                    expression used as a template argument
           Product: gcc
           Version: 12.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: majerech.o at gmail dot com
  Target Milestone: ---

template <auto>
void
f() { }

constexpr auto g = f<[] (int x, int y) { return x > y; }>;

This produces the following diagnostic:
<source>: In lambda function:
<source>:5:50: error: expected ';' before '>' token
    5 | constexpr auto g = f<[] (int x, int y) { return x > y; }>;
      |                                                  ^~
      |                                                  ;
<source>:5:51: error: expected primary-expression before '>' token
    5 | constexpr auto g = f<[] (int x, int y) { return x > y; }>;
      |                                                   ^
ASM generation compiler returned: 1
<source>: In lambda function:
<source>:5:50: error: expected ';' before '>' token
    5 | constexpr auto g = f<[] (int x, int y) { return x > y; }>;
      |                                                  ^~
      |                                                  ;
<source>:5:51: error: expected primary-expression before '>' token
    5 | constexpr auto g = f<[] (int x, int y) { return x > y; }>;
      |                                                   ^

Godbolt link to the above: https://godbolt.org/z/KG6d5E6ev

Changing the body to return (x > y); makes the error go away as a workaround.
So I speculate that the greater-than operator is misparsed as the end of the
template argument list.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-12-02 23:55 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-02 17:32 [Bug c++/107953] New: Greater-than operator misparsed inside a lambda expression used as a template argument majerech.o at gmail dot com
2022-12-02 20:28 ` [Bug c++/107953] " pinskia at gcc dot gnu.org
2022-12-02 23:18 ` pinskia at gcc dot gnu.org
2022-12-02 23:23 ` pinskia at gcc dot gnu.org
2022-12-02 23:55 ` majerech.o at gmail dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).