Files
kotlin/compiler/testData/codegen/boxWithStdlib/reflection/kClassInAnnotation/checkcast.kt
2015-04-16 10:40:19 +03:00

11 lines
181 B
Kotlin

import kotlin.reflect.KClass
fun box(): String {
try {
javaClass<String>() as KClass<String>
} catch (e: Exception) {
return "OK"
}
return "fail"
}