Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
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
())
}