mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 01:43:23 +07:00
GitOrigin-RevId: 77f3a1bfdfb28734dd1af4a4e2d19aa5af2cfdb9
11 lines
180 B
Java
11 lines
180 B
Java
public class AllButWriteNoRead {
|
|
static class X {
|
|
static int y;
|
|
}
|
|
|
|
void test() {
|
|
<selection>X.y</selection> = 10;
|
|
System.out.println("hello");
|
|
X.y = 15;
|
|
}
|
|
} |