Bug 73959

Summary: completion doesn't work after an array cast statement in a method
Product: [Eclipse Project] JDT Reporter: Ludovic WALLE <walle>
Component: CoreAssignee: David Audel <david_audel>
Status: RESOLVED DUPLICATE QA Contact:
Severity: normal    
Priority: P3    
Version: 3.0   
Target Milestone: 3.1 M2   
Hardware: PC   
OS: Windows 2000   
Whiteboard:

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 ***