Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 352587 - [content assist] No type parameters inserted for constructor invocations
Summary: [content assist] No type parameters inserted for constructor invocations
Status: CLOSED DUPLICATE of bug 332366
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Text (show other bugs)
Version: 3.7   Edit
Hardware: All All
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: JDT-Text-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-07-20 10:16 EDT by Ayushman Jain CLA
Modified: 2011-07-20 10:29 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 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 ***