1 /* { dg-do compile } */
2 
f(_Complex float a,float b)3 _Complex float f(_Complex float a, float b)
4 {
5   return a - a*b;
6 }
7