Files
openide/plugins/lombok/testData/after/MixGetterVal.java
Michail Plushnikov 5df26b4b2e updated expected tests
GitOrigin-RevId: 2d8405a4a852ac2a1c3c40f3e0948bffcb2152cd
2019-10-03 14:42:57 +03:00

16 lines
197 B
Java

class MixGetterVal {
private int x;
public void m(int z) {
}
public void test() {
final int y = x;
m(y);
}
@java.lang.SuppressWarnings("all")
public int getX() {
return this.x;
}
}