Bug 43274

Summary: Type hierarchy broken
Product: [Eclipse Project] JDT Reporter: Dirk Baeumer <dirk_baeumer>
Component: CoreAssignee: Jerome Lanneluc <jerome_lanneluc>
Status: VERIFIED FIXED QA Contact:
Severity: normal    
Priority: P3 CC: nikolaymetchev
Version: 3.0   
Target Milestone: 3.0 M4   
Hardware: PC   
OS: Windows XP   
Whiteboard:

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.