Bug 71705

Summary: [1.5] CodeAssist failure with simple test case
Product: [Eclipse Project] JDT Reporter: David Audel <david_audel>
Component: CoreAssignee: David Audel <david_audel>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 3.0   
Target Milestone: 3.1 M1   
Hardware: PC   
OS: Windows XP   
Whiteboard:

Description David Audel CLA 2004-08-10 06:41:51 EDT
1) create the following class
public class X {
  Object#cursor# o;
  void foo(int[] a, int[] b){
    if(a.lenth < b.length)
      System.out.println();
  }
}
Comment 1 David Audel CLA 2004-08-10 06:43:24 EDT
2) do ctrl + space at cursor location
Comment 2 David Audel CLA 2004-08-10 06:51:40 EDT
More simple test case

class X {
  bar#cursor#

  void foo(){
    A<B
  }
}
Comment 3 David Audel CLA 2004-08-10 07:01:38 EDT
Fixed and tests added
  GenericsCompletionParserTest#test169()
  GenericsCompletionParserTest#test170()