mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
15 lines
188 B
Kotlin
Vendored
15 lines
188 B
Kotlin
Vendored
// WITH_REFLECT
|
|
// FILE: J.java
|
|
|
|
public class J {
|
|
}
|
|
|
|
// FILE: 1.kt
|
|
|
|
fun box(): String {
|
|
val j = J::class
|
|
if (j.simpleName != "J") return "Fail: ${j.simpleName}"
|
|
|
|
return "OK"
|
|
}
|