mirror of
https://forge.sourceware.org/marek/gcc.git
synced 2026-02-22 20:01:31 -05:00
* parser.c (cp_parser_parameter_declaration): Handle turning autos into packs here. (cp_parser_parameter_declaration_list): Not here. From-SVN: r259015
9 lines
108 B
C
9 lines
108 B
C
// PR c++/64095
|
|
// { dg-do compile { target c++14 } }
|
|
|
|
void f()
|
|
{
|
|
[](auto...){}();
|
|
[](auto&&...){}();
|
|
}
|