brintos

brintos / llvm-project-archived public Read only

0
0
Text · 295 B · 613b828 Raw
10 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s2 3int && r1(int &&a);4 5typedef int && R;6void 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 10