public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/107450] New: GCC accepts invalid program involving multiple template parameter packs
@ 2022-10-28 13:27 jlame646 at gmail dot com
  2022-10-28 15:05 ` [Bug c++/107450] " jlame646 at gmail dot com
  2023-05-19  3:03 ` pinskia at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: jlame646 at gmail dot com @ 2022-10-28 13:27 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 107450
           Summary: GCC accepts invalid program involving multiple
                    template parameter packs
           Product: gcc
           Version: 13.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jlame646 at gmail dot com
  Target Milestone: ---

The following invalid program is accepted by gcc and clang but rejected by
msvc:
Demo: https://godbolt.org/z/Esbq4qK94
```
template<typename... T1, typename... T2, typename... T3>
void foo(T1&&...args1, T2&&... args2, T3&&... args3) {
    std::cout << "args1:\n", ((std::cout << args1 << " "), ...);
    std::cout << "args2:\n", ((std::cout << args2 << " "), ...);
    std::cout << "args3:\n", ((std::cout << args3 << " "), ...);
}

int main(int argc, char** argv)
{
    foo(1,2,3,4,5,6); //gcc and clang compiles this while msvc correctly
rejects this
}
```

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

end of thread, other threads:[~2023-05-19  3:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-28 13:27 [Bug c++/107450] New: GCC accepts invalid program involving multiple template parameter packs jlame646 at gmail dot com
2022-10-28 15:05 ` [Bug c++/107450] " jlame646 at gmail dot com
2023-05-19  3:03 ` pinskia 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).