// "Wrap 'integers' with 'ArrayList'" "true-preview" import java.util.*; class Test { void testComparator() { List integers = new ArrayList<>(List.of(4, 3, 2, 1)); integers.sort(Comparator.naturalOrder()); } }