public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/95066] New: [C++ 20] Incorrect valid compilation with a conditional explicit
@ 2020-05-11 17:50 ojman101 at protonmail dot com
  2020-05-11 17:57 ` [Bug c++/95066] " ojman101 at protonmail dot com
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: ojman101 at protonmail dot com @ 2020-05-11 17:50 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 95066
           Summary: [C++ 20] Incorrect valid compilation with a
                    conditional explicit
           Product: gcc
           Version: 9.3.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ojman101 at protonmail dot com
  Target Milestone: ---

The code below is invalid C++, the line "Foo<int> b = a;" should fail to
compile as implicitly casting is made illegal by the conditional explicit using
the "IsSafelyCastable" predicate.

----------------------------------------------------------------
#include <type_traits>

template <typename, typename>
class IsSafelyCastable : public std::false_type {};

template <>
class IsSafelyCastable<int, float> : public std::true_type {};

template <typename T>
struct Foo {
    template <typename U>
    explicit(!IsSafelyCastable<T, U>::value) operator Foo<U>();
};

template <typename T>
template <typename U>
Foo<T>::operator Foo<U>() {
  return {};
}

int main() {
    Foo<float> a;
    Foo<int> b = a;
}
----------------------------------------------------------------

Clang 10 correctly evaluates the explicit condition to be true and blocks the
implicit cast. However, GCC 9.3.0 successfully compiles without any errors. I
believe this to be a GCC bug as subtle changes can make GCC produce the correct
error. For example, moving the definition of the function to be inline with the
declaration.

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

end of thread, other threads:[~2020-06-11 20:33 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-11 17:50 [Bug c++/95066] New: [C++ 20] Incorrect valid compilation with a conditional explicit ojman101 at protonmail dot com
2020-05-11 17:57 ` [Bug c++/95066] " ojman101 at protonmail dot com
2020-05-11 18:26 ` [Bug c++/95066] [C++ 20] Incorrect successful " mpolacek at gcc dot gnu.org
2020-05-11 22:00 ` mpolacek at gcc dot gnu.org
2020-05-11 23:07 ` mpolacek at gcc dot gnu.org
2020-05-13 20:26 ` cvs-commit at gcc dot gnu.org
2020-06-11 20:33 ` cvs-commit at gcc dot gnu.org
2020-06-11 20:33 ` 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).