aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.bugs/900210_08.C
blob: 163757b0c3074cb4bf5a61182393873ce86db115 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// { 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; }