mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
11 lines
174 B
Kotlin
11 lines
174 B
Kotlin
import test.*
|
|
fun test1(): Int {
|
|
return 1.inlineMethod()
|
|
}
|
|
|
|
fun box(): String {
|
|
val result = test1()
|
|
if (result != 2) return "test1: ${result}"
|
|
|
|
return "OK"
|
|
} |