1/* PR c/54559 */
2
3typedef double _Complex T;
4
5T
6foo (double x, double y)
7{
8  return x + y * (T) (__extension__ 1.0iF);
9}
10