public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/107428] New: trying to define a partial specialized concept does not give a good error message
@ 2022-10-26 20:45 pinskia at gcc dot gnu.org
  2022-10-26 21:42 ` [Bug c++/107428] " redi at gcc dot gnu.org
  0 siblings, 1 reply; 2+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-10-26 20:45 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 107428
           Summary: trying to define a partial specialized concept does
                    not give a good error message
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Keywords: diagnostic
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: pinskia at gcc dot gnu.org
  Target Milestone: ---

Take:
```
template<typename T, typename T1>
concept same = false;
template<typename T>
concept same<T, T> = true;
```

GCC produces:
```
<source>:6:13: error: expected '=' before '<' token
    6 | concept same<T, T> = true;
      |             ^
```

While clang produces:
```
<source>:6:9: error: name defined in concept definition must be an identifier
concept same<T, T> = true;
        ^
```

While clang is definitely better than GCC. We could do even better at
sugguesting you can't do a partial specialization of a concept.

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

* [Bug c++/107428] trying to define a partial specialized concept does not give a good error message
  2022-10-26 20:45 [Bug c++/107428] New: trying to define a partial specialized concept does not give a good error message pinskia at gcc dot gnu.org
@ 2022-10-26 21:42 ` redi at gcc dot gnu.org
  0 siblings, 0 replies; 2+ messages in thread
From: redi at gcc dot gnu.org @ 2022-10-26 21:42 UTC (permalink / raw)
  To: gcc-bugs

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

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever confirmed|0                           |1
   Last reconfirmed|                            |2022-10-26

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

end of thread, other threads:[~2022-10-26 21:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-26 20:45 [Bug c++/107428] New: trying to define a partial specialized concept does not give a good error message pinskia at gcc dot gnu.org
2022-10-26 21:42 ` [Bug c++/107428] " redi at gcc dot gnu.org

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).