Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceContains/withoutOperatorModifier.kt
T
2016-04-04 12:21:11 +02:00

9 lines
157 B
Kotlin
Vendored

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