1// { dg-do assemble  }
2// g++ 1.36.1 bug 900210_08
3
4// g++ allows pointer-to-const values to be implicitly converted to
5// void* values.  This causes a silent loss of the const qualifier.
6
7// Cfront 2.0 passes this test.
8
9// keywords: pointer types, implicit type conversions
10
11const char *ccp;
12void *vp;
13
14void function ()
15{
16  vp = ccp;		/* { dg-error "" } */
17}
18
19int main () { return 0; }
20