mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
15 lines
156 B
Kotlin
Vendored
15 lines
156 B
Kotlin
Vendored
// FILE: A.java
|
|
|
|
public class A {
|
|
public static void test() {}
|
|
}
|
|
|
|
// FILE: test.kt
|
|
|
|
enum class E { EN }
|
|
|
|
fun test() {
|
|
A()::test
|
|
E.EN::valueOf
|
|
}
|