OSDN Git Service

PR c++/47705
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / crash23.C
1 // PR c++/17642
2
3 template<int dim>
4 int f(const int* const lsh, const int* const bbox, const int* const nghostzones, int d)
5 {
6   for (int d=0; d<dim; ++d)
7     lsh[d] - (bbox[2*d+1] ? 0 : nghostzones[d]);
8 }
9