Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
c29db84419592e98e71a08d1a9fb04a3d6b51a0c
/
.
/
clang
/
test
/
SemaCXX
/
cast-lvalue-to-rvalue-reference.cpp
blob: 45e72d2924fe4760ea04639122ec26e0c23017ad [
file
] [
log
] [
blame
]
Davide Italiano
a227591
2015-07-12 22:10:56 +0000
[
diff
] [
blame
]
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
;