public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/67240] New: [concepts] Implicit conversion constraints are not respected
@ 2015-08-16 18:09 sebi707 at gmail dot com
  2015-08-17  9:20 ` [Bug c++/67240] " redi at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: sebi707 at gmail dot com @ 2015-08-16 18:09 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 67240
           Summary: [concepts] Implicit conversion constraints are not
                    respected
           Product: gcc
           Version: 6.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: sebi707 at gmail dot com
  Target Milestone: ---

Using the trailing return type to add constraints does not work in some cases.
The following code should not compile:

int foo(int x)
{
    return x;
}

template <typename T>
concept bool C1 = requires (T x) {
    {foo(x)} -> int&;
};

template <typename T>
concept bool C2 = requires (T x) {
    {foo(x)} -> void;
};

static_assert( C1<int> );
static_assert( C2<int> );

However this compiles just fine with r226884.


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

end of thread, other threads:[~2015-08-21 18:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-08-16 18:09 [Bug c++/67240] New: [concepts] Implicit conversion constraints are not respected sebi707 at gmail dot com
2015-08-17  9:20 ` [Bug c++/67240] " redi at gcc dot gnu.org
2015-08-21 18:33 ` jason at gcc dot gnu.org
2015-08-21 18:33 ` 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).