20e36438e2
Move those tests which do not require neither stdlib nor reflect
12 lines
203 B
Kotlin
Vendored
12 lines
203 B
Kotlin
Vendored
// FULL_JDK
|
|
|
|
import java.nio.CharBuffer
|
|
|
|
fun box(): String {
|
|
val cb = CharBuffer.wrap("OK")
|
|
cb.position(1)
|
|
val o = cb[0]
|
|
val k = (cb as CharSequence).get(0)
|
|
return o.toString() + k
|
|
}
|