blob: 211e75dc6ebe49d5f1f65f8d693275c4dc37447b [file] [log] [blame]
public abstract class Issue3569 {
public interface MyInterface {}
public abstract <T extends MyInterface> T getT();
protected <K> K getK(Issue3569 ab) {
return ab.getT();
}
}