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