c7435ba760
We are going to deprecate `WITH_RUNTIME` directive. The main reason behind this change is that `WITH_STDLIB` directive better describes its meaning, specifically it will add kotlin stdlib to test's classpath.
23 lines
726 B
Kotlin
Vendored
23 lines
726 B
Kotlin
Vendored
// IGNORE_BACKEND: WASM
|
|
// WASM_MUTE_REASON: IGNORED_IN_JS
|
|
// IGNORE_BACKEND: JS, JS_IR, NATIVE
|
|
// IGNORE_BACKEND: JS_IR_ES6
|
|
// WITH_STDLIB
|
|
|
|
class CharacterLiteral(private val prefix: NamelessString, private val s: NamelessString) {
|
|
override fun toString(): String = "$prefix'$s'"
|
|
}
|
|
|
|
@Suppress("OPTIONAL_DECLARATION_USAGE_IN_NON_COMMON_SOURCE")
|
|
@kotlin.jvm.JvmInline
|
|
value class NamelessString(val b: ByteArray) {
|
|
override fun toString(): String = String(b)
|
|
}
|
|
|
|
fun box(): String {
|
|
val ns1 = NamelessString("abc".toByteArray())
|
|
val ns2 = NamelessString("def".toByteArray())
|
|
val cl = CharacterLiteral(ns1, ns2)
|
|
if (cl.toString() != "abc'def'") return throw AssertionError(cl.toString())
|
|
return "OK"
|
|
} |