Home | History | Annotate | Download | only in SemaTemplate

Lines Matching defs:X4

73 struct X4 {
74 X4();
75 ~X4();
76 X4(X4&);
77 template<typename T> X4(const T&, int = 17);
80 X4 test_X4(bool Cond, X4 x4) {
81 X4 a(x4, 17); // okay, constructor template
82 X4 b(x4); // okay, copy constructor
83 return X4();