Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e1e07d20949869a38f2fc0b6ceeea1235721f07f
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
smartcasts
/
letUsesOwnReceiver.kt
blob: 647362874a9e97081a81d398c6ed030cef7896fa [
file
]
// Based on KT-9033
fun f
(
s
:
String
)
=
s
fun foo
(
s
:
String
?)
{
s
?.
let
{
f
(<!
DEBUG_INFO_SMARTCAST
!>
s
<!>)
}
s
?.
let
{
f
(
it
)
}
}