aboutsummaryrefslogtreecommitdiff
path: root/test/Parser/cxx0x-rvalue-reference.cpp
blob: 36432332722d403ee9d9ab322a527d7b0c8ad8ae (plain)
1
2
3
4
5
6
// RUN: clang -fsyntax-only -verify -std=c++0x %s

int && r1(int &&a);

typedef int && R;
void r2(const R a);