blob: 86ed56676e26d404bd661d26b2e84c07a2712c41 [file] [log] [blame]
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>);
}
}
}