mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
18 lines
283 B
Kotlin
18 lines
283 B
Kotlin
package test
|
|
|
|
inline fun inline(s: () -> String): String {
|
|
return s()
|
|
}
|
|
|
|
class InlineAll {
|
|
|
|
inline fun inline(s: () -> String): String {
|
|
return s()
|
|
}
|
|
|
|
class object {
|
|
inline fun inline(s: () -> String): String {
|
|
return s()
|
|
}
|
|
}
|
|
} |