// FIR_IDENTICAL // SKIP_TXT typealias MPair = Pair typealias TextWithOffset = MPair fun foo(c: Collection) { val a1 = c.map(TextWithOffset::first) a1[0].length val a2 = c.map(MPair::first) a2[0].length val a3 = c.map(Pair::first) a3[0].length }