Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
161333d3e7d13dd98386fe346a71a07eadfe4756
/
.
/
compiler
/
testData
/
codegen
/
customScript
/
providedPropsInLambda.kts
blob: 5aab19b1e3583e50df7c9002f1dc8869914383a0 [
file
]
// KOTLIN_SCRIPT_DEFINITION: org.jetbrains.kotlin.test.runners.codegen.TestScriptWithSimpleEnvVars
// envVar: stringVar1=abracadabra
fun foo
(
body
:
()
->
String
):
String
=
body
()
val res
=
foo
{
stringVar1
.
drop
(
5
)
}
// expected: res=adabra