2ee8f1c454
#KT-5362 Fixed #KT-8814 Fixed
9 lines
244 B
Kotlin
Vendored
9 lines
244 B
Kotlin
Vendored
package test
|
|
|
|
open class ToResolve<SomeClass>(<!UNUSED_PARAMETER!>f<!> : (Int) -> Int)
|
|
fun testFun(<!UNUSED_PARAMETER!>a<!> : Int) = 12
|
|
|
|
class TestSome<P> {
|
|
companion object : ToResolve<<!UNRESOLVED_REFERENCE!>P<!>>({testFun(it)}) {
|
|
}
|
|
} |