public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/102156] New: `cannot call constructor` error during member access
@ 2021-09-01  7:30 fchelnokov at gmail dot com
  2021-09-01  8:00 ` [Bug c++/102156] " pinskia at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: fchelnokov at gmail dot com @ 2021-09-01  7:30 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 102156
           Summary: `cannot call constructor` error during member access
           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: ---

The following valid code accesses a field in a base class:
```
struct A { int v; };
template <typename T> struct B : T {};
struct C : B<A> {};
int main() { return C{}.B::B<A>::v; }

```

but GCC prints an error:
```
cannot call constructor 'B<A>::B' directly
```
https://gcc.godbolt.org/z/hchqG7Tq8

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

end of thread, other threads:[~2022-04-15  4:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-01  7:30 [Bug c++/102156] New: `cannot call constructor` error during member access fchelnokov at gmail dot com
2021-09-01  8:00 ` [Bug c++/102156] " pinskia at gcc dot gnu.org
2021-09-01  8:09 ` [Bug c++/102156] [9/10/11/12 Regression] " pinskia at gcc dot gnu.org
2022-01-17 13:51 ` rguenth at gcc dot gnu.org
2022-04-15  4:36 ` 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).