blob: d70bc70335cb6845e8b0a919dc7586553b29ee8b [file] [log] [blame] [edit]
int foo() {
return 42;
}
void bar();
int main() {
foo();
bar();
}