Change Signature: Match calls of different overloads generated due to @JvmOverloads annotation

#KT-9020 Fixed
This commit is contained in:
Alexey Sedunov
2015-10-27 21:25:09 +03:00
parent 6b346d9e77
commit 5e223927ea
65 changed files with 880 additions and 26 deletions
@@ -0,0 +1,13 @@
class Usages {
void foo() {
Foo.foo();
}
void fooX() {
Foo.foo(1);
}
void fooXZ() {
Foo.foo(1, "1");
}
}