public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/96464] New: GCC allows 'auto' in template argument
@ 2020-08-04 16:08 haoxintu at gmail dot com
  2021-03-08 10:03 ` [Bug c++/96464] GCC accepts " redi at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: haoxintu at gmail dot com @ 2020-08-04 16:08 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 96464
           Summary: GCC allows 'auto' in template argument
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Keywords: accepts-invalid
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: haoxintu at gmail dot com
  Target Milestone: ---

Hi, all.

This code is invalid code I guess, but GCC-6.0 onwards versions accept it.

$cat small.cc
template <class> class b {};
void foo(){
    auto var = [] (class b<auto>...) {};
}

$g++ -c small.cc
//nothing

$clang++ -c small.cc
small.cc:3:28: error: 'auto' not allowed in template argument
    auto var = [] (class b<auto>...) {};
                           ^~~~
1 error generated.

Thanks,
Haoxin

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

end of thread, other threads:[~2023-03-30 16:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-04 16:08 [Bug c++/96464] New: GCC allows 'auto' in template argument haoxintu at gmail dot com
2021-03-08 10:03 ` [Bug c++/96464] GCC accepts " redi at gcc dot gnu.org
2021-08-02  9:31 ` redi at gcc dot gnu.org
2021-08-02  9:32 ` redi at gcc dot gnu.org
2023-03-30 16:58 ` ppalka 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).