mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
16 lines
212 B
Kotlin
Vendored
16 lines
212 B
Kotlin
Vendored
// FILE: J.java
|
|
|
|
public class J {}
|
|
|
|
// FILE: 1.kt
|
|
|
|
import kotlin.reflect.jvm.*
|
|
import kotlin.test.assertEquals
|
|
|
|
fun box(): String {
|
|
val j = J::class.java
|
|
assertEquals(j, j.kotlin.java)
|
|
|
|
return "OK"
|
|
}
|