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

9 lines
177 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun test() {
class Test{
operator fun contains(a: Int, b: Int) : Boolean = true
}
val test = Test()
test.c<caret>ontains(1, 2)
}