public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/97453] New: Implement CWG issue 2303
@ 2020-10-16  5:41 kamleshbhalui at gmail dot com
  2020-10-16 13:59 ` [Bug c++/97453] " mpolacek at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: kamleshbhalui at gmail dot com @ 2020-10-16  5:41 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 97453
           Summary: Implement CWG issue 2303
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: kamleshbhalui at gmail dot com
  Target Milestone: ---

https://wg21.cmeerw.net/cwg/issue2303

Testcases like below should compile.
$cat test.cc

  template <typename... T>              struct A;
  template <>                           struct A<> {};
  template <typename T, typename... Ts> struct A<T, Ts...> : A<Ts...> {};
  struct B : A<int> {};


  template <typename... T>
  void f(const A<T...>&);

  void g() {
    f(B{});
  }

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

end of thread, other threads:[~2022-02-01 12:49 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-16  5:41 [Bug c++/97453] New: Implement CWG issue 2303 kamleshbhalui at gmail dot com
2020-10-16 13:59 ` [Bug c++/97453] " mpolacek at gcc dot gnu.org
2020-10-21 10:52 ` kamleshbhalui at gmail dot com
2020-11-03 19:36 ` cvs-commit at gcc dot gnu.org
2020-11-10  0:04 ` mpolacek at gcc dot gnu.org
2022-02-01 12:49 ` marxin 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).