Mercurial > hg > CbC > CbC_llvm
annotate clang/test/Parser/cxx0x-rvalue-reference.cpp @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children |
rev | line source |
---|---|
150 | 1 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s |
2 | |
3 int && r1(int &&a); | |
4 | |
5 typedef int && R; | |
6 void r2(const R a) { // expected-warning {{'const' qualifier on reference type 'R' (aka 'int &&') has no effect}} | |
7 int & &&ar = a; // expected-error{{'ar' declared as a reference to a reference}} | |
8 } | |
9 |