repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git]
/
clang
/
test
/
SemaCXX
/
cast-lvalue-to-rvalue-reference.cpp
blob
45e72d2924fe4760ea04639122ec26e0c23017ad
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
;