summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr26869.c
blob: 6743319d109bd5b8f36d44cd7b7c2abd6338e315 (plain)
1
2
3
4
5
6
7
/* { dg-do compile } */

_Complex float f (_Complex float b, _Complex float c)
{
  _Complex float a = 1.0 + 0.0i;
  return a / c;
}