Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
smartcasts
/
letUsesOwnReceiver.fir.kt
blob: b201cf2a48d9ff7b8b541f52dacb0f4c9ed65aa3 [
file
]
// RUN_PIPELINE_TILL: BACKEND
// Based on KT-9033
fun f
(
s
:
String
)
=
s
fun foo
(
s
:
String
?)
{
s
?.
let
{
f
(
s
)
}
s
?.
let
{
f
(
it
)
}
}
/* GENERATED_FIR_TAGS: functionDeclaration, lambdaLiteral, nullableType, safeCall, smartcast */