1 // { dg-do compile { target c++11 } }
2 // PR c++/15317
3 
4 struct A
5 {
6   A(char);
7 };
A(char i2)8 A::A([[gnu::unused]] char i2)
9 {}
10