view gcc/testsuite/g++.old-deja/g++.bugs/900210_08.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

// { dg-do assemble  }
// g++ 1.36.1 bug 900210_08

// g++ allows pointer-to-const values to be implicitly converted to
// void* values.  This causes a silent loss of the const qualifier.

// Cfront 2.0 passes this test.

// keywords: pointer types, implicit type conversions

const char *ccp;
void *vp;

void function ()
{
  vp = ccp;		/* { dg-error "" } */
}

int main () { return 0; }