delegate methods: fix single field case (IDEA-154698)

This commit is contained in:
Anna.Kozlova
2016-04-14 13:55:10 +02:00
parent 000306c168
commit 24c2c0fa95
4 changed files with 46 additions and 17 deletions

View File

@@ -0,0 +1,6 @@
class A {
void foo(){}
}
class Test{
private A <caret>a;
}