Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
crash23.C
blob: b8dea99b4b1c8bac440958f16246a233f1e6c271 [
file
] [
log
] [
blame
]
// PR c++/17642
template
<
int
dim
>
void
f
(
const
int
*
const
lsh
,
const
int
*
const
bbox
,
const
int
*
const
nghostzones
,
int
d
)
{
for
(
int
d
=
0
;
d
<
dim
;
++
d
)
lsh
[
d
]
-
(
bbox
[
2
*
d
+
1
]
?
0
:
nghostzones
[
d
]);
}