Bug 71705 - [1.5] CodeAssist failure with simple test case
Summary: [1.5] CodeAssist failure with simple test case
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: David Audel CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-08-10 06:41 EDT by David Audel 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 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()