Files
kotlin-fork/idea/testData/quickfix/migration/operatorModifier/simple.kt.after
T
2015-10-12 15:10:39 +03:00

4 lines
95 B
Plaintext
Vendored

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