Files
kotlin-fork/compiler/testData/codegen/box/reflection/enclosing/localClassInTopLevelFunction.kt
T

12 lines
172 B
Kotlin
Vendored

// WITH_REFLECT
// KT-4234
fun box(): String {
class C
val name = C::class.java.getSimpleName()
if (name != "box\$C") return "Fail: $name"
return "OK"
}