Files
kotlin-fork/compiler/testData/codegen/box/fullJdk/charBuffer.kt
T
Alexander Udalov 20e36438e2 Move some tests from boxWithStdlib/ to box/
Move those tests which do not require neither stdlib nor reflect
2016-03-09 10:25:38 +03:00

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
}