public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/103714] New: [11/12 Regression] name lookup in requires-clause finds wrong thing
@ 2021-12-14 17:16 redi at gcc dot gnu.org
  2021-12-14 17:18 ` [Bug c++/103714] " redi at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: redi at gcc dot gnu.org @ 2021-12-14 17:16 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 103714
           Summary: [11/12 Regression] name lookup in requires-clause
                    finds wrong thing
           Product: gcc
           Version: 11.2.1
            Status: UNCONFIRMED
          Keywords: accepts-invalid
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: redi at gcc dot gnu.org
                CC: ppalka at gcc dot gnu.org
  Target Milestone: ---

This invalid code started to be accepted at r11-8144


template <int I>
struct derp
{
        constexpr inline static int i = I;

    template <int J>
    void f(derp<J> d) requires(d.i < i)
    {
        __builtin_printf("derp %zu < %zu\n", d.i, i);
        derp<I> d2;
        f(d2);
    }
};

int main()
{
    derp<9> d9;
    derp<8> d8;

    d9.f(d8);
}


If the requires clause is changed to (d.derp<J>::i < i) then it is correctly
rejected, but for some reason (d.i < i) is satisfied.

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

end of thread, other threads:[~2021-12-19 19:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-14 17:16 [Bug c++/103714] New: [11/12 Regression] name lookup in requires-clause finds wrong thing redi at gcc dot gnu.org
2021-12-14 17:18 ` [Bug c++/103714] " redi at gcc dot gnu.org
2021-12-14 22:26 ` ppalka at gcc dot gnu.org
2021-12-19 17:10 ` cvs-commit at gcc dot gnu.org
2021-12-19 19:10 ` cvs-commit at gcc dot gnu.org
2021-12-19 19:10 ` ppalka 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).