mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
11 lines
216 B
Java
11 lines
216 B
Java
import java.util.HashMap;
|
|
import java.util.Map;
|
|
|
|
public class Test2 {
|
|
public static void main(Sub[] args) {
|
|
Map<Sub, Super> m = new HashMap<>();
|
|
Sub k = null, v = null;
|
|
m.put(k, (Super) v);
|
|
m.put(k, v);
|
|
}
|
|
} |