Is there a way to set Eclipse report compile errors same as javac?
I stumble upon few cases where something is working in eclipse, and cannot be compiled with javac. I understand that eclipse uses ECJ and that cannot be changed, but can it anywhere be set that everything that cannot compile with javac be a compile error in Eclipse? (since there are few things that you can make compile errors in Eclipse even if they are ok)
Examples are from @SuiteClasses({A.class,B.class,})
(last comma is the problem), to subtle generic problems that I fully don't understand.