mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
Some tests were using files that others called blackBoxFile() on. Since those files are now moved to box/, copy them back to make the tests pass
7 lines
79 B
Kotlin
7 lines
79 B
Kotlin
enum class State {
|
|
O
|
|
K
|
|
}
|
|
|
|
fun box() = "${State.O.name()}${State.K.name()}"
|