Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceContains/functionLiteralArgumentAfterSemicolon.kt
T
2015-12-17 11:11:27 +03:00

10 lines
172 B
Kotlin
Vendored

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