The following program compiles. It should not be possible to instanciate
the abstract class Bar.
interface FooIntf {
int foo();
}
class Foo implements FooIntf {
}
class Bar extends Foo {
static Bar b = new Bar();
}
the abstract class Bar.
interface FooIntf {
int foo();
}
class Foo implements FooIntf {
}
class Bar extends Foo {
static Bar b = new Bar();
}