/cp
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / parameter-pack-2.C
blob95208758a6b69a1776f4e8fc79971e3941eb234f
1 // PR c++/68965
2 // { dg-do compile { target c++14 } }
3 // { dg-options "-Wall -Wextra" }
5 auto count = [](auto&&... xs) // { dg-warning "unused parameter" }
7 };
9 struct count_struct
11     template<typename... Ts>
12     auto operator()(Ts&&... xs) // { dg-warning "unused parameter" }
13     {
14     }
17 int main()
19     count(1,2,3);
20     count_struct{}(1,2,3);