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] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CXX
/
expr
/
expr.cast
/
p4-0x.cpp
blob
76ac318017302c7781593a5627ff468b47144fca
1
// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
2
// expected-no-diagnostics
3
4
struct
X
{ };
5
struct
Y
:
X
{ };
6
7
void
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
}