mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
12 lines
156 B
Kotlin
12 lines
156 B
Kotlin
package test
|
|
|
|
abstract class A<R> {
|
|
abstract fun getO() : R
|
|
|
|
abstract fun getK() : R
|
|
}
|
|
|
|
|
|
inline fun <R> doWork(job: ()-> R) : R {
|
|
return job()
|
|
} |