Files
kotlin-fork/idea/testData/quickfix/migration/operatorModifier/containsInt.kt
T
2015-09-25 20:00:26 +02:00

8 lines
211 B
Kotlin
Vendored

// "Add 'operator' modifier" "false"
// ACTION: Convert member to extension
// ACTION: Convert to block body
// ACTION: Remove explicit type specification
class A {
fun <caret>contains(other: A): Int = -1
}