mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
10 lines
146 B
Plaintext
10 lines
146 B
Plaintext
import java.util.*;
|
|
|
|
class Test {
|
|
|
|
void use() {
|
|
Set<String> set = new HashSet<>();
|
|
set.add("foo");
|
|
set.add("foo");
|
|
}
|
|
} |