Files
kotlin/idea/testData/parameterInfo/functionCall/ExtensionOnCapturedScopeChange.kt
2017-01-25 17:32:57 +03:00

11 lines
254 B
Kotlin
Vendored

fun String.method1(fn: String.() -> Unit = {}) {}
fun String.method2(param1: Int) {}
fun String.method3() {
method1 {
method2(<caret>)
}
}
/* Text: (<highlight>param1: Int</highlight>), Disabled: false, Strikeout: false, Green: true */