mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
10 lines
160 B
Kotlin
10 lines
160 B
Kotlin
fun test1(): Int {
|
|
return 1.inlineMethod()
|
|
}
|
|
|
|
fun box(): String {
|
|
val result = test1()
|
|
if (result != 2) return "test1: ${result}"
|
|
|
|
return "OK"
|
|
} |