Files
kotlin-fork/compiler/testData/diagnostics/tests/numbers/numberAsUnionAndIntersection.kt
T
Mikhail Zarechenskiy a50cc99b01 [NI] Discriminate integer literal types as they are less specific
Plus simplify code in `ResultTypeResolver` a bit
2019-03-26 22:32:14 +03:00

22 lines
719 B
Kotlin
Vendored

// !LANGUAGE: +NewInference
// !DIAGNOSTICS: -UNUSED_PARAMETER
fun test(numbers: List<Number>) {
// Short <: R, ILT <: R => CST(Short, ILT) = Short
// => we should pick Short in such situation as it more specific
shortExpected { getShort() ?: 1 }
// Short <: R, ILT <: R, R <: Comparable<R> =>
// Short <: Comparable<R>, ILT <: Comparable<R> =>
// Comparable<Short> <: Comparable<R>, Comparable<ILT> <: Comparable<R> =>
// R <: Short, R <: ILT =>
// R := Short, R := ILT
// => we should pick Short as it more specific
shortComparable { getShort() ?: 1 }
}
fun <R> shortExpected(f: () -> R) {}
fun <R : Comparable<R>> shortComparable(f: () -> R) {}
fun getShort(): Short? = 1