`require` is not so friendly in terms of flow anal...
# language-proposals
v
require
is not so friendly in terms of flow analysis, e.g. the following code won't compile:
Copy code
require(foo != null) { MyException() }
println(foo.bar())