1 // RUN: %clang_cc1 -verify -frecovery-ast -frecovery-ast-type %s
3 template <class T
> struct Ptr
{ T
*operator->() const; };
9 Ptr
<ABC
> call(int); // expected-note {{candidate function not viable}}
12 call()->run(undef
); // expected-error {{no matching function for call to 'call'}} \
13 expected
-error
{{use of undeclared identifier
}}