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

4 lines
88 B
Plaintext
Vendored

// "Add 'operator' modifier" "true"
class A {
operator fun plus(other: A): A = A()
}