11 lines
296 B
C
11 lines
296 B
C
int single_local_func() {
|
|
// This function should always only have a single local variable and no
|
|
// parameters.
|
|
int only_local = 3;
|
|
return only_local; // break in single_local_func
|
|
}
|
|
|
|
int main(int argc, char **argv) {
|
|
int to_complete = 0;
|
|
return to_complete + single_local_func();
|
|
}
|