33e6a85a2d
We exclude testData pattern from copyright scope
14 lines
266 B
Kotlin
Vendored
14 lines
266 B
Kotlin
Vendored
val x = myRun {
|
|
val inLambda = 10
|
|
println(inLambda)
|
|
inLambda
|
|
}/* DeclarationStructureElement */
|
|
|
|
fun println(any: Any) {/* DeclarationStructureElement */
|
|
|
|
}
|
|
|
|
inline fun <R> myRun(block: () -> R): R {/* DeclarationStructureElement */
|
|
return block()
|
|
}
|