xref: /llvm-project/clang/test/CXX/special/class.dtor/p2-0x.cpp (revision 9ca5c425826329d5b23300bbc8a1a7c10a19c64d)
1 // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
2 
3 // A destructor shall not be declared with a ref-qualifier.
4 struct X {
5   ~X() &; // expected-error{{ref-qualifier '&' is not allowed on a destructor}}
6 };
7 
8 struct Y {
9   ~Y() &&; // expected-error{{ref-qualifier '&&' is not allowed on a destructor}}
10 };
11