mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
16 lines
211 B
Kotlin
Vendored
16 lines
211 B
Kotlin
Vendored
package p
|
|
|
|
import _protectedSetter
|
|
|
|
fun box(): String {
|
|
return KotlinClass().ok()
|
|
}
|
|
|
|
class KotlinClass : _protectedSetter() {
|
|
fun ok(): String {
|
|
x = "o"
|
|
x += "k"
|
|
return x
|
|
}
|
|
}
|