blob: 36a36bbd96eb5706f0359b7fb85c5d9d92cdafaa [file] [log] [blame]
// @skip-test until we bring list support back
public class ListAddInfiniteLoop {
void ListLoop(List<Integer> list) {
while (true) {
list.add(4);
}
}
}