For my case the local and even the `let` feels ext...
# language-proposals
j
For my case the local and even the
let
feels extra needless because it's only used in the
else
block
Copy code
when (foo().bar().baz) {
  "hi" -> println("Hello")
  else -> println("ERROR: $it")
}