Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fae15b3fc4205675bfb51513d6068f83490926d3
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
smartcasts
/
letAlwaysChangesToNotNull.fir.kt
blob: 3fa4b2468ecf3c70e800629e0d46fc89b219802e [
file
] [
log
] [
blame
]
// 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
.
length
// Smart cast is not possible
}