blob: d7ff67b3a3229f389837383aaa2bb359f9b0458f [file]
package test
open class ToResolve<SomeClass>(f : (Int) -> Int)
fun testFun(a : Int) = 12
class TestSome<P> {
companion object : ToResolve<P>({testFun(it)}) {
}
}