Files
kotlin-fork/compiler/testData/codegen/box/classes/quotedClassName.kt
T

17 lines
419 B
Kotlin
Vendored

// IGNORE_BACKEND: JS
// !LANGUAGE: +JsAllowInvalidCharsIdentifiersEscaping
// Exclamation marks are not valid in names in the dex file format.
// Therefore, do not attempt to dex this file as it will fail.
// See: https://source.android.com/devices/tech/dalvik/dex-format#simplename
// IGNORE_DEXING
// IGNORE_BACKEND: ANDROID
class `A!u00A0`() {
val ok = "OK"
}
fun box(): String {
return `A!u00A0`().ok
}