(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr47150.c
       1  /* PR c/47150 */
       2  
       3  float _Complex foo (float, float);
       4  
       5  void
       6  bar ()
       7  {
       8    float w = 2;
       9    float _Complex b;
      10    b = 0.5 * (foo (0, w) + foo (1, w) / w);
      11  }