mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 15:54:05 +00:00
17 lines
223 B
Kotlin
Vendored
17 lines
223 B
Kotlin
Vendored
// FILE: JavaClass.java
|
|
|
|
public class JavaClass {
|
|
public static String testStatic() {
|
|
return "OK";
|
|
}
|
|
|
|
}
|
|
|
|
// FILE: 1.kt
|
|
import JavaClass.testStatic
|
|
|
|
fun test() {
|
|
JavaClass.testStatic()
|
|
testStatic()
|
|
}
|