mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
12 lines
170 B
Kotlin
Vendored
12 lines
170 B
Kotlin
Vendored
package test
|
|
|
|
abstract class A<R>(val param: R) {
|
|
abstract fun getO() : R
|
|
|
|
abstract fun getK() : R
|
|
}
|
|
|
|
|
|
inline fun <R> doWork(job: ()-> R) : R {
|
|
return job()
|
|
} |