mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
11 lines
181 B
Kotlin
Vendored
11 lines
181 B
Kotlin
Vendored
import kotlin.reflect.KClass
|
|
|
|
fun box(): String {
|
|
try {
|
|
javaClass<String>() as KClass<String>
|
|
} catch (e: Exception) {
|
|
return "OK"
|
|
}
|
|
return "fail"
|
|
}
|