07ec704228
when language verion is 1.3 #KT-23002: Fixed
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()
|
|
}
|