aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/pch/array-1.C
blob: a8935ed2606d5d3dc55da80180c7db0e8f7015d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// PR c++/36852

#include "array-1.H"

template <class T>
T
A::foo (T t[3][3])
{
  return t[0][1];
}

int
main ()
{
}