mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
9 lines
153 B
Kotlin
9 lines
153 B
Kotlin
var s: Int = 1;
|
|
|
|
inline fun Int.inlineMethod() : Int {
|
|
noInlineLambda()
|
|
return noInlineLambda()
|
|
}
|
|
|
|
inline fun Int.noInlineLambda() = { s++ } ()
|