inline field: collect final field initializers in constructors (IDEA-130350)

This commit is contained in:
Anna.Kozlova
2016-04-27 15:16:57 +02:00
parent ccb2710190
commit cafbadc4d2
6 changed files with 114 additions and 10 deletions
@@ -0,0 +1,15 @@
class Test {
private final int <caret>i;
public Test() {
this.i = 0;
}
public Test(String s) {
this.i = 0;
}
void foo() {
System.out.println(i);
}
}