mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
15 lines
268 B
Kotlin
Vendored
15 lines
268 B
Kotlin
Vendored
// TODO: muted automatically, investigate should it be ran for JS or not
|
|
// IGNORE_BACKEND: JS
|
|
|
|
// WITH_REFLECT
|
|
// KT-4234
|
|
|
|
fun box(): String {
|
|
class C
|
|
|
|
val name = C::class.java.getSimpleName()
|
|
if (name != "box\$C") return "Fail: $name"
|
|
|
|
return "OK"
|
|
}
|