2 // g++ 1.37.1 bug 900404_02
4 // g++ fails to treat multicharacter literals as type "int" as required by
5 // section 2.5.2 of the C++ Reference Manual.
7 // The result is that the following program will exit with a nonzero
10 // keywords: character literals, multi-character literals, int type
14 void function0 (int i) // function that should be called
19 void function0 (char c) // function that is actually called
25 int main () { function0 ('abcd'); return exit_status; } // { dg-warning "" }