Files

5 lines
125 B
Kotlin
Vendored

package test
class A(val n: Any) {
override infix fun equals(other: Any?): Boolean = other is A && other.n <caret>== n
}