Lines Matching refs:X0
11 struct X0 { struct
24 T X0<T>::value; // expected-error{{no matching constructor}} argument
26 template int X0<int>::value;
32 template NotDefaultConstructible X0<NotDefaultConstructible>::value; // expected-note{{instantiatio…
34 template int X0<int>::f0(int);
35 template int* X0<int>::f0(int*, int*); // expected-note{{in instantiation of member function 'X0<in…
36 template int X0<int>::f0(int, float);
38 template int X0<int>::f0(int) const; // expected-error{{does not refer}}
39 template int* X0<int>::f0(int*, float*); // expected-error{{does not refer}}
44 template MemPtr X0<MemPtr>::f0(MemPtr); // expected-note{{requested here}}
81 template <int I> struct X0 { static int x; }; argument
82 template <int I> int X0<I>::x;
83 void test1() { (void)&X0<1>::x; } in test1()
84 template struct X0<1>; variable