Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fae15b3fc4205675bfb51513d6068f83490926d3
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
smartcasts
/
letChangesToNotNull.kt
blob: f8351d3c9c1cf2742364d068aaac472d3ff7154e [
file
] [
log
] [
blame
]
// FIR_IDENTICAL
// KT-9051: Allow smart cast for captured variables if they are not modified
fun foo
(
y
:
String
?)
{
var
x
:
String
?
=
null
y
?.
let
{
x
=
it
}
x
<!
UNSAFE_CALL
!>.<!>
length
// Smart cast is not possible
}