mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-25 03:17:36 +07:00
49f4397ba0
GitOrigin-RevId: 4d6a5487576dbbc4aca9c89b067eec8218aff686
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);
|
|
}
|
|
} |