mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 15:53:49 +00:00
10 lines
133 B
Kotlin
Vendored
10 lines
133 B
Kotlin
Vendored
package inlineFun1
|
|
|
|
class A<T> {
|
|
fun test() = 1
|
|
|
|
inline fun myFun1(f: () -> T): T {
|
|
test()
|
|
return f()
|
|
}
|
|
} |