xref: /llvm-project/clang/test/SemaCXX/cast-lvalue-to-rvalue-reference.cpp (revision a2275910a75457abacf024c9baf9f250b86439ed)
1 // RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11
2 // expected-no-diagnostics
3 
4 struct S {};
5 int x;
6 S&& y1 = (S&&)x;
7 S&& y2 = reinterpret_cast<S&&>(x);
8 S& z1 = (S&)x;
9