public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/102170] New: False accept of class member access using qualified-id in case of ambiguity
@ 2021-09-02  6:41 fchelnokov at gmail dot com
  0 siblings, 0 replies; only message in thread
From: fchelnokov at gmail dot com @ 2021-09-02  6:41 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 102170
           Summary: False accept of class member access using qualified-id
                    in case of ambiguity
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: fchelnokov at gmail dot com
  Target Milestone: ---

In this program there is an ambiguity in qualified-id member access .D::
```
template<int N> struct A{ int v = N; using D = A; };
struct B : A<1>, A<2> {};
using D = A<1>;
int main() { return B{}.D::v; }
```
This program must be rejected (as Clang does). But GCC accepts it now,
incorrectly using global D
https://gcc.godbolt.org/z/74qraoeac

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-09-02  6:41 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-02  6:41 [Bug c++/102170] New: False accept of class member access using qualified-id in case of ambiguity fchelnokov at gmail dot com

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).