Re: Java 8 syntax change between b63 and b65

2013-01-30 Thread David Holmes
Hi Frank, Probably best to confirm this on lambda-dev but I suspect that default method support introduced a bug in b63 that was fixed by b65. David On 30/01/2013 12:06 PM, Frank Ding wrote: Hi guys, I noticed there is a change in Java 8 between b63 and b65. The change can be illustrated by

Java 8 syntax change between b63 and b65

2013-01-29 Thread Frank Ding
Hi guys, I noticed there is a change in Java 8 between b63 and b65. The change can be illustrated by compiling following Issue class. public class Issue { interface Handler { public void handle(); } interface Listener { public void listen(); } Handler handlerImpl = new Handler() { public void