Home | History | Annotate | Download | only in SemaTemplate

Lines Matching refs:MemInt

259 struct MemInt {
263 struct InheritsMemInt : MemInt { };
269 template struct DotMemRef0<MemInt, int&>;
272 template struct DotMemRef0<MemInt, float&>; // expected-note{{instantiation}}
286 template struct ArrowMemRef0<MemInt*, int&>;
289 template struct ArrowMemRef0<MemInt*, float&>; // expected-note{{instantiation}}
291 template struct ArrowMemRef0<ArrowWrapper<MemInt*>, int&>;
294 template struct ArrowMemRef0<ArrowWrapper<MemInt*>, float&>; // expected-note{{instantiation}}
295 template struct ArrowMemRef0<ArrowWrapper<ArrowWrapper<MemInt*> >, int&>;
307 // FIXME: we should be able to return a MemInt without the reference!
308 MemInt &createMemInt(int);