### Eclipse Workspace Patch 1.0 #P org.eclipse.jdt.core Index: compiler/org/eclipse/jdt/internal/compiler/lookup/Scope.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/Scope.java,v retrieving revision 1.377 diff -u -r1.377 Scope.java --- compiler/org/eclipse/jdt/internal/compiler/lookup/Scope.java 1 Nov 2010 14:44:53 -0000 1.377 +++ compiler/org/eclipse/jdt/internal/compiler/lookup/Scope.java 17 Nov 2010 19:02:09 -0000 @@ -3896,7 +3896,8 @@ for (int i = 0; i < argLength; i++) { TypeBinding param = parameters[i]; TypeBinding arg = arguments[i]; - if (arg != param && !arg.isCompatibleWith(param)) + //https://bugs.eclipse.org/bugs/show_bug.cgi?id=330445 + if (arg != param && !arg.erasure().isCompatibleWith(param.erasure())) return NOT_COMPATIBLE; } return COMPATIBLE;