Bug 3448

Summary: No error for package and type collision in default package (1GLDM89)
Product: [Eclipse Project] JDT Reporter: David Audel <david_audel>
Component: CoreAssignee: Kent Johnson <kent_johnson>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P2    
Version: 2.0   
Target Milestone: 2.0 M3   
Hardware: All   
OS: Windows NT   
Whiteboard:

Description David Audel CLA 2001-10-10 22:55:17 EDT
Step to reproduce :
	1) create a class ZZ in default package with a ZZZ member type
	2) create a ZZ package
	3) create ZZZ type in ZZ package
	
	no error in task list.

	/* ZZ.java file */
	public class ZZ {
		public class ZZZ {}
	}
	

	/* ZZZ.java file */
	package ZZ;
	
	public class ZZZ {
	
	}

NOTES:
Comment 1 DJ Houghton CLA 2001-10-29 17:14:58 EST
PRODUCT VERSION:
build 202a + Jdtcore/Head

Comment 2 Philipe Mulet CLA 2002-02-02 07:26:43 EST
This should now work ?
Comment 3 Kent Johnson CLA 2002-02-04 12:58:40 EST
Fixed. Needed additional reference info.