blob: ae568e8859c0b185522985777f810312405f51dc (
plain)
1
2
3
4
5
6
7
8
9
|
// RUN: %clang_cc1 -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}}
}
|