Bug 70618

Summary: [1.5] Variable T should be allowed as argument of supertype
Product: [Eclipse Project] JDT Reporter: Philipe Mulet <philippe_mulet>
Component: CoreAssignee: Kent Johnson <kent_johnson>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 3.0   
Target Milestone: 3.1 M1   
Hardware: PC   
OS: Windows XP   
Whiteboard:

Description Philipe Mulet CLA 2004-07-22 10:10:15 EDT
The following code should allow to bind T in the parameterized supertype 
AbstractList<T>:

import java.util.AbstractList;

public class X<T> {
	class M extends AbstractList<T> {}
}
Comment 1 Philipe Mulet CLA 2004-07-22 10:11:50 EDT
See GenericTypeTest#test257.
Comment 2 Kent Johnson CLA 2004-07-22 11:47:14 EDT
Fixed