Bug 85900

Summary: [1.5] [compiler] internal compiler reports name clash
Product: [Eclipse Project] JDT Reporter: Ralf Behle <ralf.be>
Component: CoreAssignee: Kent Johnson <kent_johnson>
Status: VERIFIED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 3.1   
Target Milestone: 3.1 M6   
Hardware: PC   
OS: Linux   
Whiteboard:

Description Ralf Behle CLA 2005-02-19 09:41:28 EST
Internal compiler reports a name clash for the definition of putAll. Javac does
not report any bug for the given example.

import java.util.*;

public class A extends LinkedHashMap<String, String> {
	public Object putAll(Map<String,String> a){
		return null;
	}
}
Comment 1 Kent Johnson CLA 2005-03-11 13:40:38 EST
Added MethodVerify test048
Comment 2 David Audel CLA 2005-03-31 08:40:15 EST
Verified in I20050330-0500