Bug 5070 - search: missing interface method reference
Summary: search: missing interface method reference
Status: RESOLVED DUPLICATE of bug 5068
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 2.0   Edit
Hardware: PC Windows 2000
: P3 normal (vote)
Target Milestone: 2.0 M1   Edit
Assignee: Jerome Lanneluc CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2001-10-18 06:40 EDT by Adam Kiezun CLA
Modified: 2002-01-11 09:22 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 Adam Kiezun CLA 2001-10-18 06:40:21 EDT
204

package p;
interface I {
void k();
}
class C1 implements I{
	public void k(){};
}
class D{
	void h(){
		I a= new C1();
		a.k();
	}
}

search for references to I::k - none are found, which is incorrect
declaraions - 2 (ok)
occurrences - 3 (ok)
Comment 1 Jerome Lanneluc CLA 2001-10-19 04:47:38 EDT

*** This bug has been marked as a duplicate of 5068 ***
Comment 2 Jerome Lanneluc CLA 2001-10-26 06:49:53 EDT
Bug 5068 is fixed.
Added JavaSearchTest.testMethodReference3()