first member in call chains should not have parameters (IDEA-110961)

This commit is contained in:
peter
2013-07-24 19:07:20 +02:00
parent 8fa4b8bc28
commit 8d2ba5aecb
3 changed files with 22 additions and 1 deletions
@@ -0,0 +1,15 @@
class Bar {
Goo getGoo(int a);
Goo getGoo2(int a);
}
class Goo {}
class Foo {
Bar getBar() {}
Bar getBar(int a) {}
{
Goo g = <caret>
}
}