mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
11 lines
158 B
Kotlin
Vendored
11 lines
158 B
Kotlin
Vendored
// SKIP_TXT
|
|
// FILE: A.java
|
|
class A {
|
|
private static void foo() {}
|
|
public String foo(int x) {}
|
|
}
|
|
// FILE: main.kt
|
|
fun main() {
|
|
(A::foo)(A(), 1)
|
|
}
|