Home | History | Annotate | Download | only in temp.expl.spec
      1 // RUN: %clang_cc1 -fsyntax-only %s
      2 
      3 template<typename T> void f(T);
      4 
      5 template<> void f(int) { }
      6 void f(int) { }
      7