mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
18 lines
206 B
Kotlin
Vendored
18 lines
206 B
Kotlin
Vendored
// FILE: protectedPack/J.java
|
|
|
|
package protectedPack;
|
|
|
|
public class J {
|
|
String test() {
|
|
return "OK";
|
|
}
|
|
}
|
|
|
|
// FILE: 1.kt
|
|
|
|
package protectedPack
|
|
|
|
fun box(): String {
|
|
return J().test()!!
|
|
}
|