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);
7