mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
12 lines
237 B
Java
12 lines
237 B
Java
// "Wrap with unmodifiable map" "false"
|
|
import java.util.Map;
|
|
import java.util.HashMap;
|
|
|
|
class C {
|
|
void test() {
|
|
var result = new HashMap<>();
|
|
foo(<caret>result);
|
|
}
|
|
|
|
void foo(HashMap<String, Integer> map) {}
|
|
} |