amelentev / java-oo

Java Operator Overloading
http://amelentev.github.io/java-oo/
268 stars 31 forks source link

[Bug] Chaining map accessors #47

Open Djerem- opened 7 years ago

Djerem- commented 7 years ago

In IntelliJ IDEA 2017.1.3 with up do date plugin and library javac8, using the code:

Map<Integer, Map<Integer, Integer>> map = new HashMap<>(); map[0] = new HashMap<>(); map[0][0] = 4; return map[0][0];

Will yeld an "Internal Java Compiler Error"