blob: 380705012c22f81365d167908ef81a2b5f0e111f [file] [log] [blame]
package test
class A(val n: Any) {
override infix fun equals(other: Any?): Boolean = other is A && other.n <caret>== n
}