Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
nullabilityAndSmartCasts
/
NullableNothingIsExactlyNull.fir.kt
blob: 3c52c45b1b980d71353e6b7167b0bf87f703973e [
file
]
fun test
()
{
val
out
:
Int
?
=
null
val x
:
Nothing
?
=
null
if
(
out
!=
x
)
out
.
plus
(
1
)
if
(
out
==
x
)
return
out
.
plus
(
1
)
}