blob: 3b199d7be22ab3ff534c2d59047f79e1a5bb8b93 [file] [log] [blame]
interface Foo {
int ABC = 1;
}
interface Bar extends Foo {
boolean ABC = 2;
}
class FooImpl implements Foo {}
class BarImpl extends FooImpl implements Bar {
{
boolean a = Bar.ABC;<caret>
}
}