xref: /minix3/external/bsd/llvm/dist/clang/test/CXX/temp/temp.spec/temp.expl.spec/p13.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -fsyntax-only %s
2 
3 template<typename T> void f(T);
4 
f(int)5 template<> void f(int) { }
f(int)6 void f(int) { }
7