class Right<out U : Any> : Either<Nothing, U>
Right(right: U)
val left: Nothing?
val right: U
operator fun component1(): T?
operator fun component2(): U?
fun swap(): Either<U, T>