An example of multiple inheritance is
public class Test extends Foo, Bar // illegal!
{...}
Further,
implicitly means that the compiler makes the extension for you, in this case.
So technically, it would look like this
public class Foo extends Object
{...}
public class Bar extends Foo
{...}