aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1y/parameter-pack-2.C
blob: 95208758a6b69a1776f4e8fc79971e3941eb234f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// PR c++/68965
// { dg-do compile { target c++14 } }
// { dg-options "-Wall -Wextra" }

auto count = [](auto&&... xs) // { dg-warning "unused parameter" }
{
};

struct count_struct
{
    template<typename... Ts>
    auto operator()(Ts&&... xs) // { dg-warning "unused parameter" }
    {
    }
};

int main()
{
    count(1,2,3);
    count_struct{}(1,2,3);
}