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