1// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3template<class T> class Array { /* ... */ };
4template<class T> void sort(Array<T>& v);
5
6// explicit specialization for sort(Array<int>&)
7// with deduced template-argument of type int
8template<> void sort(Array<int>&);
9