blob: 36432332722d403ee9d9ab322a527d7b0c8ad8ae [file] [log] [blame]
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001// RUN: clang -fsyntax-only -verify -std=c++0x %s
2
3int && r1(int &&a);
4
5typedef int && R;
6void r2(const R a);