Lines Matching refs:intref
85 typedef int& intref;
86 typedef intref& intrefref; // C++ DR 106: reference collapsing
88 typedef intref const intref_c; // expected-warning {{'const' qualifier on reference type 'intref' (aka 'int &') has no effect}}
89 typedef intref_c intref; // ok, same type
91 typedef intref volatile intref; // expected-warning {{'volatile' qualifier on reference type 'intref' (aka 'int &') has no effect}}
92 typedef intref _Atomic intref; // expected-warning {{'_Atomic' qualifier on reference type 'intref' (aka 'int &') has no effect}}
94 void restrict_ref(__restrict intref); // ok