mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 20:05:16 +07:00
GitOrigin-RevId: 6228d0189eb9a2e77e7c0282b82f8b24165d9acc
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;
|
|
}
|
|
} |