2 // Origin: John Maddock <john at johnmaddock dot co dot uk>
3 // PR c++/13997: Error while matching partial specialization of array type
8 template <typename T, unsigned int N>
11 template <typename T, unsigned int N>
12 struct is_array<const T[N]> {};
14 template struct is_array<int const[2]>;