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

11 lines
180 B
Kotlin
Vendored

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