I would like to know why would be a problem if Java would have generics without erasure. I know the issue is compatibility with older libraries but wouldn't that be fine to put Object in place of type where we wouldn't specify it. For example it we have List list = new ArrayList(); could be used as List<Object>-s collection and List<Integer> list = new ArrayList<Integer>(); would be as is without erasure.
Could someone please show an example what would happen if erasure wouldn't come into play.
