PR middle-end/77674
[official-gcc.git] / gcc / testsuite / g++.dg / warn / Wunused-parm-8.C
blob867ad6a2904cd5c95ee7effb91d70614c73781e0
1 // { dg-do compile { target c++14 } }
2 // { dg-options "-Wunused-but-set-parameter" }
4 auto l = [](auto t) -> decltype(true ? t : 0) { return {}; };
6 int main()
8   l(42);