blob: ed9eedd5533176fdaca9d5a9026da6d319a9a4d9 [file] [log] [blame]
import java.util.Collection;
public class IncorrectError extends NarrowClass {
public Collection<String> bar() {
return super.doStuff();
}
}
interface Interface {
Collection<String> doStuff();
}
class NarrowClass extends BaseClass implements Interface {
}
class BaseClass {
public Collection doStuff() {
return null;
}
}