mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
18 lines
214 B
Kotlin
Vendored
18 lines
214 B
Kotlin
Vendored
// FILE: protectedPack/J.java
|
|
|
|
package protectedPack;
|
|
|
|
public class J {
|
|
protected String foo() {
|
|
return "OK";
|
|
}
|
|
}
|
|
|
|
// FILE: 1.kt
|
|
|
|
package protectedPack
|
|
|
|
fun box(): String {
|
|
return J().foo()!!
|
|
}
|