go-nyet
go-nyet copied to clipboard
Doesn't check named return values
The following doesn't seem to report as an issue, but I would expect it to:
func foo() (name string) {
if true {
name := "foo"
println(name)
}
return
}