12 lines · c
1int single_local_func() {2 // This function should always only have a single local variable and no3 // parameters.4 int only_local = 3;5 return only_local; // break in single_local_func6}7 8int main(int argc, char **argv) {9 int to_complete = 0;10 return to_complete + single_local_func();11}12