Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ed7ee67e4e1513f9b3ba9587b6d6e950e7a1da7f
/
.
/
compiler
/
testData
/
repl
/
exceptionInVariableInitializer.repl
blob: 8ba55e05eb7effe7cb965a0e8f2f13c9e491f317 [
file
]
>>>
var
x
:
Int
=
{
->
if
(
true
)
throw
RuntimeException
()
else
5
}()
java
.
lang
.
RuntimeException
at
Line_0
.<
init
>(
Line_0
.
kts
:
1
)
>>>
x
java
.
lang
.
NullPointerException
at
Line_1
.<
init
>(
Line_1
.
kts
:
1
)