Guest User

Untitled

a guest
Jul 16th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. class Cat{}
  2.  
  3.  
  4. class Tiger extends Cat{
  5.  
  6. public static void main(String[] args) {
  7.  
  8. List<Tiger> tigers= new ArrayList<>();
  9.  
  10. List<Cat> animals = tigers;
  11.  
  12. }
  13.  
  14. }
Add Comment
Please, Sign In to add comment