Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
compileKotlinAgainstCustomBinaries
/
missingDependencyJavaConflictingLibraries
/
source.kt
blob: 1d082917bc96c6672cafaf54eb8c45041f18dedc [
file
]
import
test
.*
fun testA
(
b1
:
B1
,
b2
:
B2
)
{
b2
.
consumeA
(
b1
.
produceA
())
// No error here as in javac
b2
.
consumeListOfAs
(
b1
.
produceListOfAs
())
}