mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
9 lines
207 B
Plaintext
Vendored
9 lines
207 B
Plaintext
Vendored
>>> var x: Int = { -> if (true) throw RuntimeException() else 5}()
|
|
java.lang.RuntimeException
|
|
at Line_0$x$1.invoke(Line_0.kts:1)
|
|
at Line_0$x$1.invoke(Line_0.kts:1)
|
|
>>> x
|
|
error: unresolved reference: x
|
|
x
|
|
^
|