blob: d70a60cfdfa1c3aac77f7c4f6025823b46d413d2 [file] [log] [blame]
Eli Friedman647c8b32010-08-06 23:41:47 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2// PR7837
3
4template<class T> struct C1 { void operator()(T); };
5template<class T> struct C2; // expected-note {{template is declared here}}
6template<class T> void foo(T);
7void wrap() {
8 foo(&C1<int>::operator());
9 foo(&C1<int>::operator+); // expected-error {{no member named 'operator+' in 'C1<int>'}}
10 foo(&C2<int>::operator+); // expected-error {{implicit instantiation of undefined template 'C2<int>'}}
11}