commit 1cbec685124b7a40fe899286db697a85da7be28a The following program compiles and runs, but it should complain that there's no return statement in `f`: ``` package main func main() { _ = f("") } func f(s string) string { for range s { } } ```
commit 1cbec68
The following program compiles and runs, but it should complain that there's no return statement in
f: