mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
12 lines
174 B
Java
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;
|
|
}
|
|
} |