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