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