Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceCallWithBinaryOperator/functionLiteralArgument.kt
T
2015-05-14 01:10:05 +03:00

10 lines
150 B
Kotlin

fun test() {
class Test {
fun plus(fn: () -> Test): Test = fn()
}
val test = Test()
test.pl<caret>us {
Test()
}
}