1// { dg-do assemble  }
2// g++ 1.36.1 bug 900209_01
3
4// g++ implicitly casts values whose types are "void*" to other pointer
5// types (just as the language rules for C permit).  Such implicit
6// conversions are not allowed by the Cfront 2.0 Reference Manual
7// however.
8
9// Cfront 2.0 passes this test.
10
11// keywords: void pointers, type conversions, pointer type conversions
12
13void * void_pointer_object;
14char * char_pointer_object;
15
16void global_function_0 ()
17{
18  char_pointer_object = void_pointer_object;	// { dg-error "" }
19}
20
21int main () { return 0; }
22