1 // RUN: %clang_cc1 -std=c++11 -verify %s -Wunused-parameter
3 // PR19303 : Make sure we don't get a unused expression warning for deleted and
6 // expected-no-diagnostics
13 A(const A
&other
) = delete;
24 void A::SetX(A x
) = delete;
33 B::B(const B
&other
) = default;