Files
openide/java/java-tests/testData/refactoring/inplaceIntroduceField/templateAdjustment_after.java
T

9 lines
98 B
Java

class Test {
private int anInt;
int f(){
anInt = -1;
return anInt;
}
}