mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
#KT-2095 Fixed fix backend-side issues with kotlin.jvm.overloads: support the annotation on constructors, generate nullablity annotations on parameters, generate generic signatures, add various tests
6 lines
148 B
Java
Vendored
6 lines
148 B
Java
Vendored
public class Test {
|
|
public static String invokeMethodWithOverloads() {
|
|
C<String> c = new C<String>();
|
|
return c.foo("O");
|
|
}
|
|
} |