Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0cdb643f859f08ca7101919a9dd985b7c112109a
/
.
/
compiler
/
testData
/
codegen
/
box
/
regressions
/
hashCodeNPE.kt
blob: d362db21e77d43169322ee4214acd571b743a3e4 [
file
]
// See KT-14242
var
x
=
1
fun box
():
String
{
val any
:
Any
?
=
when
(
1
)
{
x
->
null
else
->
Any
()
}
// Must not be NPE here
val hashCode
=
any
?.
hashCode
()
return
hashCode
?.
toString
()
?:
"OK"
}