IDEA-162322 Completion missing for field in copy constructor

This commit is contained in:
peter
2016-10-10 20:49:28 +02:00
parent 5a15a3e160
commit 283613d591
4 changed files with 21 additions and 0 deletions
@@ -0,0 +1,7 @@
class CopyConstructor {
private final String ad;
public CopyConstructor(CopyConstructor other) {
this.ad = other.a<caret>
}
}
@@ -0,0 +1,7 @@
class CopyConstructor {
private final String ad;
public CopyConstructor(CopyConstructor other) {
this.ad = other.ad<caret>
}
}