Bug 71672

Summary: [1.5] MethodInvocation has no type arguments
Product: [Eclipse Project] JDT Reporter: Olivier Thomann <Olivier_Thomann>
Component: CoreAssignee: Olivier Thomann <Olivier_Thomann>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 3.0   
Target Milestone: 3.1 M1   
Hardware: PC   
OS: Windows XP   
Whiteboard:

Description Olivier Thomann CLA 2004-08-09 15:00:23 EDT
Using latest code fomr HEAD, a method invocation has no type arguments.

Try to convert the following code:
public class A<X> {

	public A() {
		this.<X>foo();
	}
	
	public <X> void foo() {
	}
}

the method invocation this.<X>foo() has no type arguments.
Comment 1 Olivier Thomann CLA 2004-08-09 15:00:44 EDT
Fixed and released in HEAD.
Regression test added.