re PR tree-optimization/33593 (tree-outof-ssa moves sources of non-call exceptions...
[gcc.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 }