1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
// RUN: %clang_cc1 -verify -fsyntax-only %s
// Verify the absence of assertion failures when solving calls to unresolved
// template member functions.
struct A {
template <typename T>
static void bar(int) { } // expected-note {{candidate template ignored: couldn't infer template argument 'T'}}
};
struct B {
template <int i>
static void foo() {
int array[i];
A::template bar(array[0]); // expected-error {{a template argument list is expected after a name prefixed by the template keyword}} expected-error {{no matching function for call to 'bar'}}
}
};
int main() {
B::foo<4>(); // expected-note {{in instantiation of function template specialization 'B::foo<4>'}}
return 0;
}
namespace GH70375 {
template <typename Ty>
struct S {
static void bar() {
Ty t;
t.foo();
}
static void take(Ty&) {}
};
template <typename P>
struct Outer {
template <typename C>
struct Inner;
using U = S<Inner<P>>;
template <>
struct Inner<void> {
void foo() {
U::take(*this);
}
};
};
void instantiate() {
Outer<void>::U::bar();
}
}
namespace GH89374 {
struct A {};
template <typename Derived>
struct MatrixBase { // #GH89374-MatrixBase
template <typename OtherDerived>
Derived &operator=(const MatrixBase<OtherDerived> &); // #GH89374-copy-assignment
};
template <typename>
struct solve_retval;
template <typename Rhs>
struct solve_retval<int> : MatrixBase<solve_retval<Rhs> > {};
// expected-error@-1 {{partial specialization of 'solve_retval' does not use any of its template parameters}}
void ApproximateChebyshev() {
MatrixBase<int> c;
c = solve_retval<int>();
// expected-error@-1 {{no viable overloaded '='}}
// expected-note@#GH89374-copy-assignment {{candidate template ignored: could not match 'MatrixBase' against 'solve_retval'}}
// expected-note@#GH89374-MatrixBase {{candidate function (the implicit copy assignment operator) not viable: no known conversion from 'solve_retval<int>' to 'const MatrixBase<int>' for 1st argument}}
// expected-note@#GH89374-MatrixBase {{candidate function (the implicit move assignment operator) not viable: no known conversion from 'solve_retval<int>' to 'MatrixBase<int>' for 1st argument}}
}
} // namespace GH89374
|