Files
openide/java/java-tests/testData/refactoring/inplaceIntroduceVariable/conflictWithFieldNoCast_after.java
T

9 lines
157 B
Java

class Test {
private int[][] weights;
public void out(int u) {
int[][] weights = this.weights;
System.out.println(weights);
}
}