Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
elvisExclExclMerge.kt
blob: 543e7d750752c7c257f9e2e374959bd824cf8293 [
file
]
fun test
(
x
:
Any
?):
Any
{
val z
=
x
?:
x
!!
// x is not null in both branches
<!
DEBUG_INFO_SMARTCAST
!>
x
<!>.
hashCode
()
return
z
}