blob: ee79c536267257b93ae41efcbab9d28570c64d8f [file] [log] [blame]
public class aa {
public static boolean isVisualUpdate(int update_type) {
return update_type <= Iaaa.FULL_QUOTE_VISUAL;
}
}
interface Iaaa {
int FULL_QUOTE_VISUAL = 0;
}
class a implements Iaaa {
int update_type = 8;
public static boolean blabla(int update_type) {
return aa.isVisualUpdate(update_type);
}
}