public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/104752] New: `Concept auto(x)` should not be a valid function-style cast
@ 2022-03-02  9:09 ensadc at mailnesia dot com
  2022-03-02 15:52 ` [Bug c++/104752] " mpolacek at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: ensadc at mailnesia dot com @ 2022-03-02  9:09 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 104752
           Summary: `Concept auto(x)` should not be a valid function-style
                    cast
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Keywords: accepts-invalid
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ensadc at mailnesia dot com
                CC: mpolacek at gcc dot gnu.org
  Target Milestone: ---

https://godbolt.org/z/KbPMrbKsK

====
template<class T>
concept C = true;
auto x = auto(1);     // valid (P0849R8)
auto y = C auto(1);   // expect a error

====
The initializer of `y` should be an error, but is currently accepted by GCC.

[dcl.type.auto.deduct]:
> For an explicit type conversion ([expr.type.conv]), T is the specified type,
> which shall be auto.

Note that the specified type cannot be 'type-constraint auto'.

GCC does emit an error for `C<> auto(1)`.

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

end of thread, other threads:[~2022-03-10 16:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-02  9:09 [Bug c++/104752] New: `Concept auto(x)` should not be a valid function-style cast ensadc at mailnesia dot com
2022-03-02 15:52 ` [Bug c++/104752] " mpolacek at gcc dot gnu.org
2022-03-10 16:23 ` cvs-commit at gcc dot gnu.org
2022-03-10 16:28 ` mpolacek 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).