mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
20 lines
220 B
Kotlin
Vendored
20 lines
220 B
Kotlin
Vendored
// FILE: JavaClass.java
|
|
|
|
public class JavaClass {
|
|
|
|
protected String FIELD = "OK";
|
|
|
|
}
|
|
|
|
// FILE: Kotlin.kt
|
|
|
|
package test
|
|
|
|
import JavaClass
|
|
|
|
class B : JavaClass() {
|
|
inline fun bar() = FIELD
|
|
}
|
|
|
|
fun box() = B().bar()
|