Bug 73959 - completion doesn't work after an array cast statement in a method
Summary: completion doesn't work after an array cast statement in a method
Status: RESOLVED DUPLICATE of bug 72352
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.0   Edit
Hardware: PC Windows 2000
: P3 normal (vote)
Target Milestone: 3.1 M2   Edit
Assignee: David Audel CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-09-15 02:57 EDT by Ludovic WALLE CLA
Modified: 2004-09-15 08:57 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Ludovic WALLE CLA 2004-09-15 02:57:05 EDT
public class Bug {



	public Bug() {
		Object s1 = "aaa";
		System. // completion works here
		String s2 = (String) a1;
		System. // and here
		Object[] a1 = new String[0];
		System. // and here
		String[] a2 = (String[]) a1; // array cast statement
		// completion doesn't work any more from here to the end of the
		// method ("No completions available.")
		System. // completion doesn't work here 
	}
	

}
Comment 1 David Audel CLA 2004-09-15 05:00:41 EDT
I can not reproduce the problem.

Ludovic - What is the build number of your Eclipse build ?
Comment 2 David Audel CLA 2004-09-15 08:55:43 EDT
From : Ludovic WALLE

The build number of my Eclipse build is 200408122000.

After reporting the bug, I wondered if it couldn't come from a corrupted
workspace. I tryed with a new workspace, and the same thing happens.
Comment 3 David Audel CLA 2004-09-15 08:57:33 EDT

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