Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/upperBounds/intersectUpperBounds.kt
T
2017-11-29 02:54:26 +03:00

33 lines
549 B
Kotlin
Vendored

// !WITH_NEW_INFERENCE
// !CHECK_TYPE
package s
interface In<in T>
interface A
interface B
interface C: A, B
fun <T> foo(in1: In<T>, in2: In<T>): T = throw Exception("$in1 $in2")
fun test(inA: In<A>, inB: In<B>, inC: In<C>) {
<!OI;TYPE_INFERENCE_CONFLICTING_SUBSTITUTIONS!>foo<!>(inA, inB)
val r = foo(inA, inC)
checkSubtype<C>(r)
val c: C = foo(inA, inB)
use(c)
}
fun <T: C> bar(in1: In<T>): T = throw Exception("$in1")
fun test(inA: In<A>) {
val r = bar(inA)
checkSubtype<C>(r)
}
fun use(vararg a: Any?) = a