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

10 lines
162 B
Kotlin

fun test() {
class Test{
fun contains(fn: () -> Boolean) : Boolean = true
}
val test = Test()
test.c<caret>ontains {
true
}
}