1 /* { dg-do compile } */
2 
f(_Complex float b,_Complex float c)3 _Complex float f (_Complex float b, _Complex float c)
4 {
5   _Complex float a = 1.0 + 0.0i;
6   return a / c;
7 }
8