mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
11 lines
236 B
Java
11 lines
236 B
Java
// "Wrap with unmodifiable set" "false"
|
|
import java.util.Set;
|
|
import java.util.HashSet;
|
|
|
|
class C {
|
|
void test() {
|
|
HashSet<String> result = new HashSet<>();
|
|
HashSet<String> other;
|
|
other = <caret>result;
|
|
}
|
|
} |