Working with an IDE, such as NetBeans or IDEA, I saw that they convert common types to this character:
private final List<String> ar = new ArrayList<~>();
But using this in a simple editor leads to an error. By the way, Eclipse also does not like. Is this related to the type erasure mechanism?
source share