// PROBLEM: none // WITH_RUNTIME // ERROR: No value passed for parameter 'second' // ERROR: Type inference failed: Not enough information to infer parameter B in constructor Pair(first: A, second: B)
Please specify it explicitly.
import kotlin.Pair fun test() { val p = Pair(1, ) }