view gcc/testsuite/g++.dg/ext/complex3.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

// PR c++/31780
// { dg-do run }
// { dg-options "" }

// Test that we can implicitly convert to _Complex, but that it's worse
// than a scalar arithmetic conversion.

extern "C" void exit (int);

int r = 0;

void f (_Complex int) { ++r; }
void f (double) { }

void g (_Complex int) { }

int main()
{
  f (1);
  g (1);

  return r;
}

void bar()
{
  r ? 0i : 0;
}