mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 15:50:52 +07:00
testdata for IDEA-137277
(cherry picked from commit d98f44e277ae128ef6fb279a4e0dd738f9162939)
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import java.util.TreeSet;
|
||||
import java.util.concurrent.atomic.LongAdder;
|
||||
|
||||
class Test {
|
||||
|
||||
{
|
||||
Set<Map.Entry<String, Integer>> sort = new TreeSet<>((x, y) -> Integer.compare(x.getValue(), y.getValue()));
|
||||
Set<Map.Entry<String, LongAdder>> sort2 = new TreeSet<>((x, y) -> Long.compare(x.getValue().longValue(), y.getValue().longValue()));
|
||||
|
||||
Set<Map.Entry<String, Integer>> sort3 = new TreeSet<>((x, y) -> {
|
||||
return Integer.compare(x.getValue(), y.getValue());
|
||||
});
|
||||
|
||||
Set<Map.Entry<String, LongAdder>> sort4 = new TreeSet<>((x, y) -> {
|
||||
return Long.compare(x.getValue().longValue(), y.getValue().longValue());
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user