re PR middle-end/26869 (Segfault in find_lattice_value() for complex operands.)
[gcc.git] / gcc / testsuite / gcc.dg / torture / pr26869.c
1 /* { dg-do compile } */
2
3 _Complex float f (_Complex float b, _Complex float c)
4 {
5 _Complex float a = 1.0 + 0.0i;
6 return a / c;
7 }