mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 11:40:50 +07:00
12 lines
277 B
Java
12 lines
277 B
Java
abstract class Foo {
|
|
protected String bar;
|
|
}
|
|
|
|
class FF extends Foo {
|
|
class FFI extends Foo {
|
|
void f() {
|
|
if (this.bar == FF.this.bar);
|
|
if (<warning descr="Condition 'this.bar == FFI.this.bar' is always 'true'">this.bar == FFI.this.bar</warning>);
|
|
}
|
|
}
|
|
} |