Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c35e97a8dc1b95945d4b0bc57de45a0550682bc
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
smartcasts
/
letUsesOwnReceiver.fir.kt
blob: 0e3733de8c6e4dfef77bdf5d5332e309d71e93eb [
file
]
// Based on KT-9033
fun f
(
s
:
String
)
=
s
fun foo
(
s
:
String
?)
{
s
?.
let
{
f
(
s
)
}
s
?.
let
{
f
(
it
)
}
}