Home | History | Annotate | Download | only in SemaTemplate

Lines Matching defs:X1

53 struct X1 {
61 void test_X1(X1 x1) {
62 float *fp1 = x1.f1<>(17);
63 float *fp2 = x1.f1<int>(3.14); // expected-warning {{implicit conversion turns literal floating-point number into integer}}
64 int *ip1 = x1.f1(17);
65 float *ip2 = x1.f1(3.14);
67 float* (X1::*mf1)(int) = &X1::f1;
68 float* (X1::*mf2)(int) = &X1::f1<>;
69 float* (X1::*mf3)(float) = &X1::f1<float>;
71 float* (*fp3)(int) = &X1::f2;
72 float* (*fp4)(int) = &X1::f2<>;
73 float* (*fp5)(float) = &X1::f2<float>;
74 float* (*fp6)(int) = X1::f2;
75 float* (*fp7)(int) = X1::f2<>;
76 float* (*fp8)(float) = X1::f2<float>;
137 struct X1 {