Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
smartCastWithOrFalse.kt
blob: fc13b42077c2925916660d50fbed5bbaa4d397b7 [
file
]
fun main
(
x
:
Any
?)
{
if
(
x
is
String
||
false
)
{
<!
DEBUG_INFO_SMARTCAST
!>
x
<!>.
length
}
else
{
x
.<!
UNRESOLVED_REFERENCE
!>
length
<!>
}
}