view gcc/testsuite/g++.dg/lookup/extern-c-hidden.C @ 111:04ced10e8804

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

// Make sure unhidding an extern-c still checks it is compatible

extern "C" float fabsf (float);  // { dg-message "previous declaration" }

namespace Bob 
{
  extern "C" float fabsf (float, float); // { dg-error "C language" }
  extern "C" double fabs (double, double); // { dg-message "previous declaration" }
}

extern "C" double fabs (double); // { dg-error "C language" }