Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/nullableUpperBound.kt
T
2015-10-14 20:51:01 +03:00

9 lines
162 B
Kotlin
Vendored

package o
fun foo(): String? {
return accept(JV<String?, Unit?>())
}
fun <R, D> accept(<!UNUSED_PARAMETER!>v<!>: JV<R, D>): R? = null
open class JV<R, D>()