brintos

brintos / llvm-project-archived public Read only

0
0
Text · 307 B · c7b1b58 Raw
11 lines · cpp
1// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s2 3// A destructor shall not be declared with a ref-qualifier.4struct X {5  ~X() &; // expected-error{{ref-qualifier '&' is not allowed on a destructor}}6};7 8struct Y {9  ~Y() &&; // expected-error{{ref-qualifier '&&' is not allowed on a destructor}}10};11