mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
14 lines
300 B
Java
Vendored
14 lines
300 B
Java
Vendored
import test.kotlin.A;
|
|
|
|
import static test.kotlin.JvmOverloadsFunctionsKt.foo;
|
|
|
|
class JvmOverloadsFunctions {
|
|
public static void main(String[] args) {
|
|
A a = new A() { };
|
|
|
|
foo(a.getClass(), a, true, "Some");
|
|
foo(a.getClass(), a, true);
|
|
foo(a.getClass(), a);
|
|
}
|
|
}
|