9 lines
259 B
Kotlin
Vendored
9 lines
259 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<<!INACCESSIBLE_OUTER_CLASS_EXPRESSION!>P<!>>({testFun(it)}) {
|
|
}
|
|
} |