Files
kotlin-fork/idea/testData/quickfix/migration/operatorModifier/toplevel.kt
T

8 lines
164 B
Kotlin
Vendored

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