mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
9 lines
185 B
Java
9 lines
185 B
Java
// "Wrap 'integers' with 'HashSet'" "true-preview"
|
|
import java.util.*;
|
|
|
|
class Test {
|
|
void testComparator() {
|
|
var integers = Set.of(4, 3, 2, 1);
|
|
integers.a<caret>dd(123);
|
|
}
|
|
} |