(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
warn/
Wunused-parm-6.C
// PR c++/61465
// { dg-do compile { target c++11 } }
// { dg-options "-Wunused-but-set-parameter" }

struct Foo {
  Foo(void* x) : y{static_cast<char*>(x)} {}
  char* y;
};