modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/pr47150.c (about)

     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  }