2 // g++ 1.36.1 bug 900211_01
4 // g++ issues only warnings for calls to previously undeclared functions,
5 // however such calls are actually errors.
7 // Cfront 2.0 passes this test.
9 // keywords: undeclared, functions
11 void global_function_0 ()
13 global_function_1 (); /* { dg-error "" } */
16 int main () { return 0; }