1 // PR c++/64095
2 // { dg-do compile { target c++14 } }
3 
f()4 void f()
5 {
6   [](auto...){}();
7   [](auto&&...){}();
8 }
9