blob: 4fdf0a15857a5c5ece7f4946eb67458e22fb3fd1 [file] [log] [blame]
interface Am {
}
class AIIm implements Am {
private String getIcon() {
return null;
}
public static void main(String[] args) {
new AIIm().getIcon();
}
}