Files
kotlin/compiler/testData/codegen/notNullAssertions/javaMultipleSubstitutions.kt

6 lines
147 B
Kotlin
Vendored

internal fun bar(a: A<String, Int>, b: B<String>, c: C) {
val sa: String = a.foo()
val sb: String = b.foo()
val sc: String = c.foo()
}