Try to compile the following code in JDK7:
import java.nio.file.*;
public final class _DiamondSyntaxErrors {
public interface InterfaceA<T> {
}
public abstract static class ClassA<T>
implements InterfaceA<T> {
protected ClassA() {
}
}
public static void main(String... args) {
// no error
InterfaceA<Path> classA = new ClassA<>() {
};
// error: cannot infer type arguments for SimpleFileVisitor<>
FileVisitor<Path> visitor = new SimpleFileVisitor<>() {
};
}
}
Why doesn't the second usage of the diamond syntax work?
What's the big difference to the first usage?
@BjornS: Ok, I'll report a bug. I just have the experience that lots of "bugs" are no bugs but misunderstandings of something, so I asked here first ;) – java.is.for.desktop Nov 2 '10 at 12:23