delegate methods: restore ellipsis type (IDEA-171529)

This commit is contained in:
Anna.Kozlova
2017-04-18 15:03:44 +02:00
parent 7a23d509b8
commit 9f6e8ccb35
4 changed files with 28 additions and 1 deletions
@@ -0,0 +1,11 @@
class Foo {
void foo(String... s) {}
}
class Bar {
Foo myDelegate;
public void foo(String... s) {
myDelegate.foo(s);
}
}
@@ -0,0 +1,8 @@
class Foo {
void foo(String... s) {}
}
class Bar {
Foo myDelegate;
<caret>
}