blob: f96442740a09a550c9e462e7f6487cd4b0f5d2d6 [file] [log] [blame]
class A {
public void foo(Object o) {
}
interface I {
public void foo(Object o); //This should be consideredd implemented in A
}
}
class B extends A implements A.I {
}