Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
script
/
nullable_projection.kts
blob: 80c37c7f935cfa9b39c5bd5875ce236a1c409353 [
file
]
import
java
.
lang
.
RuntimeException
val v
:
String
?
=
param
[
0
]
if
(
v
==
null
)
System
.
out
.
println
(
"nullable"
)
else
RuntimeException
(
"non nullable projection"
)