Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
946dff8bda9fd326d2b6c18f10c7545ebed12ae1
/
.
/
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"
)