Bug 71672 - [1.5] MethodInvocation has no type arguments
Summary: [1.5] MethodInvocation has no type arguments
Status: RESOLVED FIXED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.0   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: 3.1 M1   Edit
Assignee: Olivier Thomann CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-08-09 15:00 EDT by Olivier Thomann CLA
Modified: 2005-01-11 11:02 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.