### Eclipse Workspace Patch 1.0 #P org.eclipse.jdt.core Index: compiler/org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment.java,v retrieving revision 1.71 diff -u -r1.71 LookupEnvironment.java --- compiler/org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment.java 2 May 2006 13:52:25 -0000 1.71 +++ compiler/org/eclipse/jdt/internal/compiler/lookup/LookupEnvironment.java 11 May 2006 09:57:03 -0000 @@ -961,7 +961,7 @@ return null; // will not get here since the above error aborts the compilation } else if (!isParameterized) { // check raw type, only for resolved types - binding = (ReferenceBinding)convertToRawType(binding); + binding = (ReferenceBinding)convertUnresolvedBinaryToRawType(binding); } return binding; }