1 // PR c++/36852
2 
3 #include "array-1.H"
4 
5 template <class T>
6 T
foo(T t[3][3])7 A::foo (T t[3][3])
8 {
9   return t[0][1];
10 }
11 
12 int
main()13 main ()
14 {
15 }
16