fork download
  1. import java.util.*;
  2. import java.lang.*;
  3.  
  4. class Main
  5. {
  6. public static void main (String[] args) throws java.lang.Exception
  7. {
  8. List<?> j = null;
  9. List<Integer> j2 = (List<Integer>)j;
  10.  
  11. List<List<?>> i = null;
  12. List<List<Integer>> i2 = (List<List<Integer>>) (List<?>) i;
  13. }
  14. }
Success #stdin #stdout 0.07s 380224KB
stdin
Standard input is empty
stdout
Standard output is empty