mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 02:33:48 +07:00
21 lines
438 B
Java
21 lines
438 B
Java
class TestPage extends WWW {
|
|
private static final Object log = null;
|
|
|
|
static class B extends W3 {
|
|
public B() {
|
|
<ref>log.hashCode();
|
|
}
|
|
}
|
|
}
|
|
|
|
class WWW extends W3{
|
|
private static final Object log = new Object();
|
|
protected void run(Object runnable){}
|
|
}
|
|
class W3 extends W4 {
|
|
private static final Object log = new Object();
|
|
}
|
|
class W4 {
|
|
private static final Object log = new Object();
|
|
}
|