1
2int main(int argc, char** argv) {
3  return f();
4}
5
6int f() {
7    return 42;
8}
9