Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
smartcasts
/
withChangesToNull.fir.kt
blob: 48993ab86e7b9d442af047e91929f605e3e754d8 [
file
]
fun foo
(
y
:
String
?)
{
var
x
:
String
?
=
""
if
(
x
!=
null
)
{
with
(
y
?.
let
{
x
=
null
;
it
})
{
this
<!
UNSAFE_CALL
!>.<!>
length
<!
SMARTCAST_IMPOSSIBLE
!>
x
<!>.
length
}
x
<!
UNSAFE_CALL
!>.<!>
length
}
}