FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.bugs / 900209_01.C
blob59871ab31edd246319c0a656f1be36ca5cd9f920
1 // g++ 1.36.1 bug 900209_01
3 // g++ implicitly casts values whose types are "void*" to other pointer
4 // types (just as the language rules for C permit).  Such implicit
5 // conversions are not allowed by the Cfront 2.0 Reference Manual
6 // however.
8 // Cfront 2.0 passes this test.
10 // keywords: void pointers, type conversions, pointer type conversions
12 void * void_pointer_object;
13 char * char_pointer_object;
15 void global_function_0 ()
17   char_pointer_object = void_pointer_object;    // ERROR - 
20 int main () { return 0; }