Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
script
/
nullable_parameter.kts
blob: f22306821101ebe1a058c1ed677814259646d5aa [
file
]
import
java
.
lang
.
RuntimeException
val k
:
Int
?
=
param
if
(
k
==
null
)
System
.
out
.
println
(
"Param is null"
)
else
throw
RuntimeException
(
"param is not null"
)