public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/96871] New: Fails to parse templated constructor in template class
@ 2020-08-31 16:13 tiagomacarios at gmail dot com
  2020-08-31 21:47 ` [Bug c++/96871] [11 Regression] " mpolacek at gcc dot gnu.org
  2020-09-01  0:35 ` mpolacek at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: tiagomacarios at gmail dot com @ 2020-08-31 16:13 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 96871
           Summary: Fails to parse templated constructor in template class
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: tiagomacarios at gmail dot com
  Target Milestone: ---

Both clang and MSVC compile the below fine - gcc fails.

https://godbolt.org/z/hfPdKT

#include <utility>

template <typename T>
struct S {
  template <typename... Arg>
  S<T>(Arg&&... arg);
};

<source>:6:11: error: expected ')' before '&&' token

    6 |   S<T>(Arg&&... arg);

      |       ~   ^~

      |           )

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

end of thread, other threads:[~2020-09-01  0:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-31 16:13 [Bug c++/96871] New: Fails to parse templated constructor in template class tiagomacarios at gmail dot com
2020-08-31 21:47 ` [Bug c++/96871] [11 Regression] " mpolacek at gcc dot gnu.org
2020-09-01  0:35 ` mpolacek 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).