import java.util.*; class Bug { public static Set copy(final Set set) { return new HashSet<>(set); } }