OSDN Git Service

PR c++/31598
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / tree-ssa / pr23624.C
1 /* { dg-do compile } */
2
3 template <int>
4 void f()
5 {
6     int *t, i;
7     t[i ? 0 : i];
8 }