Change Signature: Match calls of different overloads generated due to @JvmOverloads annotation
#KT-9020 Fixed
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
class Usages {
|
||||
void foo() {
|
||||
Foo.foo();
|
||||
}
|
||||
|
||||
void fooX() {
|
||||
Foo.foo(1);
|
||||
}
|
||||
|
||||
void fooXZ() {
|
||||
Foo.foo(1, "1");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user