Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
1d1d80e5f9173c6924006db6fcec87417b8f1be7
/
.
/
clang
/
test
/
Parser
/
cxx0x-rvalue-reference.cpp
blob: 36432332722d403ee9d9ab322a527d7b0c8ad8ae [
file
] [
log
] [
blame
]
Sebastian Redl
0f8b23f
2009-03-16 23:22:08 +0000
[
diff
] [
blame
]
1
// RUN: clang -fsyntax-only -verify -std=c++0x %s
2
3
int
&&
r1
(
int
&&
a
);
4
5
typedef
int
&&
R
;
6
void
r2
(
const
R a
);