Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 352587

Summary: [content assist] No type parameters inserted for constructor invocations
Product: [Eclipse Project] JDT Reporter: Ayushman Jain <amj87.iitr>
Component: TextAssignee: JDT-Text-Inbox <jdt-text-inbox>
Status: CLOSED DUPLICATE QA Contact:
Severity: normal    
Priority: P3 CC: daniel_megert
Version: 3.7   
Target Milestone: ---   
Hardware: All   
OS: All   
Whiteboard:

Description Ayushman Jain CLA 2011-07-20 10:16:19 EDT
HEAD

public class Test<T> {
	class T1<E> {
		
	}
	public static void main(String[] args) {
		Test<String>.T1<String> e = new Te|
		

	}

}

Above, invoke content assist on '|'. Inserted proposal is new Test(). Expected - new Test<String>().
Comment 1 Dani Megert CLA 2011-07-20 10:29:06 EDT

*** This bug has been marked as a duplicate of bug 332366 ***