Files
openide/java/java-tests/testData/refactoring/introduceVariable/AllButWriteNoRead.after.java
Anna Kozlova 9f9e5f35fc [java] introduce variable: replace hardcoded replace choice in tests with UI interception
GitOrigin-RevId: 6228d0189eb9a2e77e7c0282b82f8b24165d9acc
2022-01-28 07:21:38 +00:00

12 lines
174 B
Java

public class AllButWriteNoRead {
static class X {
static int y;
}
void test() {
int x = X.y;
x = 10;
System.out.println("hello");
x = 15;
}
}