package dependency class MyPair(public val first: A, public val second: B) infix fun A.pair(that: B): MyPair = MyPair(this, that)