aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Parser/cxx0x-rvalue-reference.cpp
blob: e57e6013e5e76fd1fa39b1f219c061e46805dca2 (plain)
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s

int && r1(int &&a);

typedef int && R;
void r2(const R a) {
  int & &&ar = a; // expected-error{{'ar' declared as a reference to a reference}}
}