mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
9 lines
214 B
Kotlin
9 lines
214 B
Kotlin
import kotlin.test.*
|
|
import kotlin.reflect.jvm.kotlinPackage
|
|
|
|
fun box(): String {
|
|
val p = Class.forName("_DefaultPackage").kotlinPackage
|
|
if ("$p" != "package <default>") return "Fail: $p"
|
|
return "OK"
|
|
}
|