mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 00:21:35 +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
|
|
}
|