blob: 7251f4420a488c1f4908573a26b11a059e225a9b [file] [log] [blame]
import org.checkerframework.common.value.qual.*;
public class LiteralArray {
private static final String[] timeFormat = {
("#.#"), ("#.#"), ("#.#"), ("#.#"), ("#.#"),
};
public void test() {
String @ArrayLen(5) [] array = timeFormat;
}
}