Skip to content

Instantly share code, notes, and snippets.

@rzwitserloot
Created October 15, 2014 14:53
Show Gist options
  • Save rzwitserloot/8af1e3f3bc3117b53106 to your computer and use it in GitHub Desktop.
Save rzwitserloot/8af1e3f3bc3117b53106 to your computer and use it in GitHub Desktop.
List<Kiwi> listOfKiwis = new ArrayList<Kiwi>();
list.add(new Kiwi());
List<Fruit> listofFruits = listOfKiwis; // This line would actually fail to compile.
listOfFruits.add(new Apple());
for (Kiwi kiwi : listOfKiwis) {
// ... this will blow up, there's an apple in my kiwis.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment