Bug 79145

Summary: non-idempotent compiler behaviour
Product: [Eclipse Project] JDT Reporter: mike andrews <mikea>
Component: CoreAssignee: Philipe Mulet <philippe_mulet>
Status: RESOLVED DUPLICATE QA Contact:
Severity: normal    
Priority: P3    
Version: 3.1   
Target Milestone: 3.1 M5   
Hardware: PC   
OS: Windows XP   
Whiteboard:

Description mike andrews CLA 2004-11-21 08:35:44 EST
compiler *sometimes* incorrectly reports a generics related error, which is
cleared by 'cleaning' project (project->clean menu choice).

my particular example is (which i can repeat in latest september distribution):

public interface ExampleType {
  ...
  public MyTypeA<MyTypeB>[] getXX(MyTypeC y, int index) throws IOException;
  ...
}

...

MyTypeC y = ...;
ExampleType object = ...;

// BOGUS COMPILER ERROR GENERATED HERE:
MyTypeA<MyTypeB>[] out = object.getXX(y,0);

// BOGUS COMPILER ERROR CLEARED BY 'CLEANING' PROJECT
Comment 1 Philipe Mulet CLA 2005-01-14 09:21:56 EST
Duplicate of bug 81719

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