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?

link|improve this question

Margus, he's using a new feature planned for Java 7. – Matthew Flaschen Nov 2 '10 at 6:38
Java 7 is not final yet, I would presume that this is a bug of sorts and you could probably report it to Oracle. I doubt anyone here will be able to shed much light on it. – BjornS Nov 2 '10 at 7:56
2  
@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
2  
Seeing how the problem is solved, maybe you could put an answer saying "It was a bug. Now it is fixed." and accept that answer. – Jean Hominal Nov 10 '10 at 14:17
feedback

1 Answer

up vote 5 down vote accepted

Filed a bug report.
Someone else filed similar bug report with same example ;)
It was fixed now (here).

link|improve this answer
Yes, this is probable the only possible "correct" answer, but since I'm the author, I have 2 days till I can accept this ;) – java.is.for.desktop Nov 10 '10 at 22:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.