mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
9 lines
171 B
Kotlin
Vendored
9 lines
171 B
Kotlin
Vendored
package test
|
|
|
|
open class ToResolve<SomeClass>(f : (Int) -> Int)
|
|
fun testFun(a : Int) = 12
|
|
|
|
class TestSome<P> {
|
|
companion object : ToResolve<P>({testFun(it)}) {
|
|
}
|
|
} |