9 lines
162 B
Kotlin
Vendored
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>() |