Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
elvisExclExclMerge.fir.kt
blob: c23b235a6fa8b300cde44c31adf580eae99d76f0 [
file
]
fun test
(
x
:
Any
?):
Any
{
val z
=
x
?:
x
!!
// x is not null in both branches
x
.
hashCode
()
return
z
}