Bug 43274 - Type hierarchy broken
Summary: Type hierarchy broken
Status: VERIFIED FIXED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.0   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: 3.0 M4   Edit
Assignee: Jerome Lanneluc CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-09-18 05:44 EDT by Dirk Baeumer CLA
Modified: 2003-10-13 05:40 EDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Dirk Baeumer CLA 2003-09-18 05:44:42 EDT
N20030918

For the following test case:

package p;

class A{
	class Inner{
	}
}
class B extends A.Inner{
	B(){
		new A().super();
	}
}

the type hierarchy of class Inner doesn't contain class B. This was the case 
in I20030917.
Comment 1 Jerome Lanneluc CLA 2003-09-18 07:00:29 EDT
Fixed Member.getInnerMostDeclaringMember() and added regression test 
TypeHierarchyTests.testInnerType2()
Comment 2 David Audel CLA 2003-10-13 05:40:50 EDT
Verified.