brintos

brintos / llvm-project-archived public Read only

0
0
Text · 264 B · 76ac318 Raw
13 lines · cpp
1// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s2// expected-no-diagnostics3 4struct X { };5struct Y : X { };6 7void test_lvalue_to_rvalue_drop_cvquals(const X &x, const Y &y, const int &i) {8  (void)(X&&)x;9  (void)(int&&)i;10  (void)(X&&)y;11  (void)(Y&&)x;12}13