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