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