mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 22:20:54 +07:00
10 lines
215 B
Java
10 lines
215 B
Java
// "Wrap with unmodifiable map" "true-preview"
|
|
import java.util.Map;
|
|
import java.util.HashMap;
|
|
|
|
class C {
|
|
Map<String, Integer> test() {
|
|
var result = new HashMap<>();
|
|
return <caret>result;
|
|
}
|
|
} |