1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -fsyntax-only -verify %s 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc struct A { 4*f4a2713aSLionel Sambuc template<typename T> 5*f4a2713aSLionel Sambuc void f(); 6*f4a2713aSLionel Sambuc }; 7*f4a2713aSLionel Sambuc class A::f<int>; 8*f4a2713aSLionel Sambuc // expected-error@-1 {{identifier followed by '<' indicates a class template specialization but 'f' refers to a function template}} 9