Files
kotlin/compiler/testData/codegen/boxWithStdlib/reflection/enclosing/localClassInTopLevelFunction.kt
2016-01-22 05:54:38 +03:00

11 lines
156 B
Kotlin
Vendored

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