I did this:
public class LambdaConflict { public static void main(String args[]){ //* System.out.println(LambdaConflict.get(
Think about it:
How should the compiler know if you want to override get1 or get2?
get1
get2
If you only override get1, what will be get2's implementation? Even the code you commented out won't work because you don't implement get2...
There are reasons for this limitation...