Lines Matching refs:Data
2 struct Data { };
4 Data *begin();
5 Data *end();
9 Data *end();
13 Data *begin();
14 Data *end() = delete; //expected-note {{'end' has been explicitly marked deleted here}}
23 Data *begin();
26 Data *end(); // expected-note 2 {{declared private here}}
30 Data * begin(ADLNoEnd); // expected-note 6 {{candidate function not viable: no known conversion}}
86 for (Data *p : pt) { } // expected-error {{invalid range expression of type 'T *'; did you mean to dereference it with '*'?}}
87 // expected-error@-1 {{no viable conversion from 'Data' to 'Data *'}}
88 // expected-note@4 {{selected 'begin' function with iterator type 'Data *'}}