void f(char*){}
void g(long int){}
int main() {
f(0x80000000);
g("a");
}
dm9pZCBmKGNoYXIqKXt9CnZvaWQgZyhsb25nIGludCl7fQoKaW50IG1haW4oKSB7CglmKDB4ODAwMDAwMDApOwoJZygiYSIpOwp9Cg==
prog.cpp: In function ‘int main()’:
prog.cpp:5: error: invalid conversion from ‘unsigned int’ to ‘char*’
prog.cpp:5: error: initializing argument 1 of ‘void f(char*)’
prog.cpp:6: error: invalid conversion from ‘const char*’ to ‘long int’
prog.cpp:6: error: initializing argument 1 of ‘void g(long int)’