Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
417088e15084daef5c72bc17ea66d3cf3c026c33
/
.
/
compiler
/
testData
/
codegen
/
box
/
contextParameters
/
inlineContextualReceiverLambda.kt
blob: 0ca8d26e61dac9371561a66e5b9cb9d75050dcb6 [
file
]
// ISSUE: KT-51960
// LANGUAGE: +ContextParameters
class
Context
class
Extended
private
inline
fun build
(
block
:
context
(
Context
)
Extended
.()
->
Unit
)
{
block
(
Context
(),
Extended
())
}
fun box
():
String
{
build
{}
return
"OK"
}