// "Wrap 'map' with 'HashMap'" "true-preview" import java.util.*; class Test { void testComparator() { Map map = Math.random() > 0.5 ? Collections.emptyMap() : Collections.singletonMap("foo", 1); map.put(123, 456); } }