mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
24 lines
687 B
Java
24 lines
687 B
Java
interface Bazz {
|
|
Bazz foo = <error descr="'Bazz.this' cannot be referenced from a static context">Bazz.this</error>;
|
|
static void foo1() {
|
|
Bazz foo = <error descr="'Bazz.this' cannot be referenced from a static context">Bazz.this</error>;
|
|
}
|
|
|
|
Runnable bar = new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
Bazz f = <error descr="'Bazz.this' cannot be referenced from a static context">Bazz.this</error>;
|
|
}
|
|
};
|
|
|
|
|
|
default void foo() {
|
|
Bazz foo = Bazz.this;
|
|
Runnable r = new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
Bazz f = Bazz.this;
|
|
}
|
|
};
|
|
}
|
|
} |