Files
Mikhail Zarechenskiy d169435300 Fix construction of Mock classes in case of generic inner types
This fixes testMissingDependencyConflictingLibraries for NI and also
 fixes changed test for OI as well
2020-02-20 12:34:35 +03:00

17 lines
272 B
Kotlin
Vendored

package c
import b.B1
import b.B2
fun testA(b1: B1, b2: B2) {
b2.consumeA(b1.produceA())
b2.consumeA(b1.produceAGeneric("foo"))
}
fun testAA(b1: B1, b2: B2) {
b2.consumeAA(b1.produceAA())
}
fun testAAA(b1: B1, b2: B2) {
b2.consumeAAA(b1.produceAAA())
}