1 // RUN: %clang_cc1 -verify -fsyntax-only %s
2 // Verify the absence of assertion failures when solving calls to unresolved
3 // template member functions.
7 static void bar(int) { } // expected-note {{candidate template ignored: couldn't infer template argument 'T'}}
14 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'}}
19 B::foo
<4>(); // expected-note {{in instantiation of function template specialization 'B::foo<4>'}}
25 template <typename Ty
>
32 static void take(Ty
&) {}
40 using U
= S
<Inner
<P
>>;
51 Outer
<void>::U::bar();
60 template <typename Derived
>
61 struct MatrixBase
{ // #GH89374-MatrixBase
62 template <typename OtherDerived
>
63 Derived
&operator=(const MatrixBase
<OtherDerived
> &); // #GH89374-copy-assignment
69 template <typename Rhs
>
70 struct solve_retval
<int> : MatrixBase
<solve_retval
<Rhs
> > {};
71 // expected-error@-1 {{partial specialization of 'solve_retval' does not use any of its template parameters}}
73 void ApproximateChebyshev() {
75 c
= solve_retval
<int>();
76 // expected-error@-1 {{no viable overloaded '='}}
77 // expected-note@#GH89374-copy-assignment {{candidate template ignored: could not match 'MatrixBase' against 'solve_retval'}}
78 // 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}}
79 // 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}}
82 } // namespace GH89374