// IGNORE_FE10 fun createTuple(a: T, b: Z&Any): Pair { return Pair(a, b) } fun main() var (val1, val2) = createTuple("a", 1) }