mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
19 lines
233 B
Kotlin
Vendored
19 lines
233 B
Kotlin
Vendored
// FILE: 1.kt
|
|
|
|
package test
|
|
|
|
public enum class X { A, B }
|
|
|
|
public inline fun switch(x: X): String = when (x) {
|
|
X.A -> "O"
|
|
X.B -> "K"
|
|
}
|
|
|
|
// FILE: 2.kt
|
|
|
|
import test.*
|
|
|
|
fun box(): String {
|
|
return switch(X.A) + switch(X.B)
|
|
}
|