blob: 7b438c5592c0189d821d5a46ccbcf1f2c7edfbb4 [file] [log] [blame]
import java.util.ArrayList;
import org.checkerframework.common.value.qual.MinLen;
// @skip-test until we bring list support back
public class ToArrayIndex {
public String @MinLen(1) [] m(@MinLen(1) ArrayList<String> compiler) {
return compiler.toArray(new String[0]);
}
}