1/* { dg-do compile } */
2
3template <int>
4void f()
5{
6    int *t, i;
7    t[i ? 0 : i];
8}
9