1 // RUN: %clang_cc1 -fsyntax-only -verify %s f(int)2void f(int) { } // expected-note {{previous definition is here}} f(const int)3void f(const int) { } // expected-error {{redefinition of 'f'}} 4 ft(T)5template <typename T> void ft(T) {} ft(int)6template <> void ft(int) {} // expected-note {{previous definition is here}} ft(int)7template <> void ft(int) {} // expected-error {{redefinition of 'ft<int>'}} 8