mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 15:54:05 +00:00
14 lines
290 B
Java
14 lines
290 B
Java
import test.kotlin.A;
|
|
|
|
import static test.kotlin.KotlinPackage.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);
|
|
}
|
|
}
|