Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
260e8dfd39d86c4c5db834113ee010d647f3995e
/
.
/
compiler
/
testData
/
codegen
/
box
/
contextParameters
/
kt51951.kt
blob: a62203a70c47bdec5cee4f55c397514f1fe40b98 [
file
]
// LANGUAGE: +ContextParameters
// WITH_STDLIB
typealias
StringProvider
=
()
->
String
context
(
function
:
StringProvider
)
fun doSomething
()
{
function
()
}
fun box
():
String
{
with
({
""
})
{
doSomething
()
}
return
"OK"
}