public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/104594] New: narrowing conversion of -1 to unsigned char at compile time not detected
@ 2022-02-18  9:15 raffael at casagrande dot ch
  2022-02-18  9:28 ` [Bug c++/104594] narrowing of -1 to unsigned char not detected with requires concepts pinskia at gcc dot gnu.org
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: raffael at casagrande dot ch @ 2022-02-18  9:15 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 104594
           Summary: narrowing conversion of -1 to unsigned char at compile
                    time not detected
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: raffael at casagrande dot ch
  Target Milestone: ---

The current gcc trunk compiles the following piece of code:
------------------------------------------------------------
template <unsigned char DIM_FROM>
concept Geometry = (DIM_FROM == -1);

template <class INIT>
requires Geometry<INIT::n>
auto GaussNewton(const INIT& init) -> void {}

template<int N>
struct X {
  static constexpr int n = N;
};

int main() { GaussNewton(X<-1>{}); }
--------------------------------------

I think this should NOT compile since it entails a narrowing conversion of -1
to an unsigned char type at compile time. Clang as well as MSVC fail to compile
the code.
(In many other cases, gcc also fails to compile if such a narrowing conversion
happens at compile time.)

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

end of thread, other threads:[~2024-01-19 18:40 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-18  9:15 [Bug c++/104594] New: narrowing conversion of -1 to unsigned char at compile time not detected raffael at casagrande dot ch
2022-02-18  9:28 ` [Bug c++/104594] narrowing of -1 to unsigned char not detected with requires concepts pinskia at gcc dot gnu.org
2022-02-28 17:43 ` ppalka at gcc dot gnu.org
2022-04-06 22:31 ` ppalka at gcc dot gnu.org
2022-04-06 22:42 ` ppalka at gcc dot gnu.org
2022-04-06 22:55 ` ppalka at gcc dot gnu.org
2022-04-06 22:57 ` ppalka at gcc dot gnu.org
2022-04-07  1:53 ` jason at gcc dot gnu.org
2024-01-19 18:35 ` cvs-commit at gcc dot gnu.org
2024-01-19 18:40 ` jason 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).