blob: 78148df166ab9e291ce40ae22e1c14847f021f5b [file] [log] [blame]
// test case for issue #67:
// https://github.com/kelloggm/checker-framework/issues/67
import org.checkerframework.checker.index.qual.*;
public class LiteralArray {
private static final String[] timeFormat = {
("#.#"), ("#.#"), ("#.#"), ("#.#"), ("#.#"),
};
public String format() {
return format(1);
}
public String format(@IndexFor("LiteralArray.timeFormat") int digits) {
return "";
}
}