2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
2009-09-18 03:51:30 +08:00
|
|
|
template<typename T>
|
|
|
|
class C { C(int a0 = 0); };
|
|
|
|
|
|
|
|
template<>
|
|
|
|
C<char>::C(int a0);
|
|
|
|
|
2010-01-13 08:25:19 +08:00
|
|
|
struct S { }; // expected-note 3 {{candidate constructor (the implicit copy constructor)}}
|
2009-08-25 11:18:48 +08:00
|
|
|
|
2010-04-22 08:20:18 +08:00
|
|
|
template<typename T> void f1(T a, T b = 10) { } // expected-error{{no viable conversion}} \
|
|
|
|
// expected-note{{passing argument to parameter 'b' here}}
|
2009-08-25 11:18:48 +08:00
|
|
|
|
|
|
|
template<typename T> void f2(T a, T b = T()) { }
|
|
|
|
|
2010-03-10 19:27:22 +08:00
|
|
|
template<typename T> void f3(T a, T b = T() + T()); // expected-error{{invalid operands to binary expression ('S' and 'S')}}
|
2009-08-25 11:18:48 +08:00
|
|
|
|
|
|
|
void g() {
|
|
|
|
f1(10);
|
2010-03-10 19:27:22 +08:00
|
|
|
f1(S()); // expected-note{{in instantiation of default function argument expression for 'f1<S>' required here}}
|
2009-08-25 11:18:48 +08:00
|
|
|
|
|
|
|
f2(10);
|
|
|
|
f2(S());
|
|
|
|
|
|
|
|
f3(10);
|
2010-03-10 19:27:22 +08:00
|
|
|
f3(S()); // expected-note{{in instantiation of default function argument expression for 'f3<S>' required here}}
|
2009-08-25 11:18:48 +08:00
|
|
|
}
|
2009-08-25 21:07:08 +08:00
|
|
|
|
|
|
|
template<typename T> struct F {
|
2010-04-22 08:20:18 +08:00
|
|
|
F(T t = 10); // expected-error{{no viable conversion}} \
|
|
|
|
// expected-note{{passing argument to parameter 't' here}}
|
|
|
|
void f(T t = 10); // expected-error{{no viable conversion}} \
|
|
|
|
// expected-note{{passing argument to parameter 't' here}}
|
2009-08-25 21:07:08 +08:00
|
|
|
};
|
|
|
|
|
2009-08-25 23:24:38 +08:00
|
|
|
struct FD : F<int> { };
|
|
|
|
|
2009-08-25 21:07:08 +08:00
|
|
|
void g2() {
|
2009-09-05 13:14:19 +08:00
|
|
|
F<int> f;
|
2009-08-25 23:24:38 +08:00
|
|
|
FD fd;
|
2009-08-25 21:07:08 +08:00
|
|
|
}
|
2009-08-25 21:46:13 +08:00
|
|
|
|
2009-09-05 13:38:54 +08:00
|
|
|
void g3(F<int> f, F<struct S> s) {
|
|
|
|
f.f();
|
2010-03-10 19:27:22 +08:00
|
|
|
s.f(); // expected-note{{in instantiation of default function argument expression for 'f<S>' required here}}
|
2009-09-07 00:54:02 +08:00
|
|
|
|
|
|
|
F<int> f2;
|
2010-03-10 19:27:22 +08:00
|
|
|
F<S> s2; // expected-note{{in instantiation of default function argument expression for 'F<S>' required here}}
|
2009-09-05 13:38:54 +08:00
|
|
|
}
|
|
|
|
|
2009-08-25 21:46:13 +08:00
|
|
|
template<typename T> struct G {
|
2009-09-05 13:14:19 +08:00
|
|
|
G(T) {}
|
2009-08-25 21:46:13 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
void s(G<int> flags = 10) { }
|
|
|
|
|
2009-09-12 02:44:32 +08:00
|
|
|
// Test default arguments
|
|
|
|
template<typename T>
|
|
|
|
struct X0 {
|
|
|
|
void f(T = T()); // expected-error{{no matching}}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename U>
|
|
|
|
void X0<U>::f(U) { }
|
|
|
|
|
|
|
|
void test_x0(X0<int> xi) {
|
|
|
|
xi.f();
|
|
|
|
xi.f(17);
|
|
|
|
}
|
2009-08-25 21:46:13 +08:00
|
|
|
|
2009-11-10 03:27:57 +08:00
|
|
|
struct NotDefaultConstructible { // expected-note 2{{candidate}}
|
|
|
|
NotDefaultConstructible(int); // expected-note 2{{candidate}}
|
2009-09-12 02:44:32 +08:00
|
|
|
};
|
2009-09-05 13:38:54 +08:00
|
|
|
|
2009-09-12 02:44:32 +08:00
|
|
|
void test_x0_not_default_constructible(X0<NotDefaultConstructible> xn) {
|
|
|
|
xn.f(NotDefaultConstructible(17));
|
|
|
|
xn.f(42);
|
|
|
|
xn.f(); // expected-note{{in instantiation of default function argument}}
|
|
|
|
}
|
2009-09-17 02:34:49 +08:00
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
struct X1 {
|
|
|
|
typedef T value_type;
|
|
|
|
X1(const value_type& value = value_type());
|
|
|
|
};
|
|
|
|
|
|
|
|
void test_X1() {
|
|
|
|
X1<int> x1;
|
|
|
|
}
|
2009-10-29 23:46:07 +08:00
|
|
|
|
2009-11-10 03:27:57 +08:00
|
|
|
template<typename T>
|
|
|
|
struct X2 {
|
|
|
|
void operator()(T = T()); // expected-error{{no matching}}
|
|
|
|
};
|
|
|
|
|
|
|
|
void test_x2(X2<int> x2i, X2<NotDefaultConstructible> x2n) {
|
|
|
|
x2i();
|
|
|
|
x2i(17);
|
|
|
|
x2n(NotDefaultConstructible(17));
|
|
|
|
x2n(); // expected-note{{in instantiation of default function argument}}
|
|
|
|
}
|
|
|
|
|
2009-10-29 23:46:07 +08:00
|
|
|
// PR5283
|
|
|
|
namespace PR5283 {
|
|
|
|
template<typename T> struct A {
|
2010-04-22 08:20:18 +08:00
|
|
|
A(T = 1); // expected-error 3 {{cannot initialize a parameter of type 'int *' with an rvalue of type 'int'}} \
|
|
|
|
// expected-note 3{{passing argument to parameter here}}
|
2009-10-29 23:46:07 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct B : A<int*> {
|
|
|
|
B();
|
|
|
|
};
|
|
|
|
B::B() { } // expected-note {{in instantiation of default function argument expression for 'A<int *>' required he}}
|
|
|
|
|
|
|
|
struct C : virtual A<int*> {
|
|
|
|
C();
|
|
|
|
};
|
|
|
|
C::C() { } // expected-note {{in instantiation of default function argument expression for 'A<int *>' required he}}
|
|
|
|
|
|
|
|
struct D {
|
|
|
|
D();
|
|
|
|
|
|
|
|
A<int*> a;
|
|
|
|
};
|
|
|
|
D::D() { } // expected-note {{in instantiation of default function argument expression for 'A<int *>' required he}}
|
|
|
|
}
|
2009-11-08 21:56:19 +08:00
|
|
|
|
|
|
|
// PR5301
|
|
|
|
namespace pr5301 {
|
|
|
|
void f(int, int = 0);
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void g(T, T = 0);
|
|
|
|
|
|
|
|
template <int I>
|
|
|
|
void i(int a = I);
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void h(T t) {
|
|
|
|
f(0);
|
|
|
|
g(1);
|
|
|
|
g(t);
|
|
|
|
i<2>();
|
|
|
|
}
|
|
|
|
|
|
|
|
void test() {
|
|
|
|
h(0);
|
|
|
|
}
|
|
|
|
}
|
2009-11-10 03:27:57 +08:00
|
|
|
|
2009-12-24 02:19:08 +08:00
|
|
|
// PR5810
|
|
|
|
namespace PR5810 {
|
|
|
|
template<typename T>
|
|
|
|
struct allocator {
|
2009-12-24 07:03:06 +08:00
|
|
|
allocator() { int a[sizeof(T) ? -1 : -1]; } // expected-error2 {{array size is negative}}
|
2009-12-24 02:19:08 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
struct vector {
|
2009-12-24 07:03:06 +08:00
|
|
|
vector(const allocator<T>& = allocator<T>()) {} // expected-note2 {{instantiation of}}
|
2009-12-24 02:19:08 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct A { };
|
2009-12-24 07:03:06 +08:00
|
|
|
struct B { };
|
|
|
|
|
2009-12-24 02:19:08 +08:00
|
|
|
template<typename>
|
|
|
|
void FilterVTs() {
|
|
|
|
vector<A> Result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void f() {
|
|
|
|
vector<A> Result;
|
|
|
|
}
|
2009-12-24 07:03:06 +08:00
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
struct X {
|
|
|
|
vector<B> bs;
|
|
|
|
X() { }
|
|
|
|
};
|
|
|
|
|
|
|
|
void f2() {
|
|
|
|
X<float> x; // expected-note{{member function}}
|
|
|
|
}
|
2009-12-24 02:19:08 +08:00
|
|
|
}
|
2010-02-05 15:33:43 +08:00
|
|
|
|
|
|
|
template<typename T> void f4(T, int = 17);
|
|
|
|
template<> void f4<int>(int, int);
|
|
|
|
|
|
|
|
void f4_test(int i) {
|
|
|
|
f4(i);
|
|
|
|
}
|
2010-04-26 22:36:57 +08:00
|
|
|
|
|
|
|
// Instantiate for initialization
|
|
|
|
namespace InstForInit {
|
|
|
|
template<typename T>
|
|
|
|
struct Ptr {
|
|
|
|
typedef T* type;
|
|
|
|
Ptr(type);
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
struct Holder {
|
|
|
|
Holder(int i, Ptr<T> ptr = 0);
|
|
|
|
};
|
|
|
|
|
|
|
|
void test_holder(int i) {
|
|
|
|
Holder<int> h(i);
|
|
|
|
}
|
|
|
|
};
|