mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
13 lines
168 B
Kotlin
Vendored
13 lines
168 B
Kotlin
Vendored
// LANGUAGE_VERSION: 1.3
|
|
|
|
class Test {
|
|
private companion object {
|
|
val res = "OK"
|
|
}
|
|
fun res() = res
|
|
}
|
|
|
|
fun box(): String {
|
|
return Test().res()
|
|
}
|