summaryrefslogtreecommitdiffstats
path: root/test/Parser/cxx0x-rvalue-reference.cpp
blob: 389f2b947003c9d3f6f42106d229ca683fea052b (plain)
1
2
3
4
5
6
7
8
9
// RUN: clang-cc -fsyntax-only -verify -std=c++0x %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}}
}

OpenPOWER on IntegriCloud