Bug 22334

Summary: Compiler generates corrupt classes
Product: [Eclipse Project] JDT Reporter: Richard Davies <eclipse>
Component: CoreAssignee: Philipe Mulet <philippe_mulet>
Status: VERIFIED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 2.0   
Target Milestone: 2.1 M1   
Hardware: PC   
OS: Windows 2000   
Whiteboard:

Description Richard Davies CLA 2002-08-10 13:05:25 EDT
I get a ClassFormatError (Illegal field modifiers: 0x18) in Test
when this is loaded into the JVM:

public interface Test {
  public static class Inner {
    public void test() {
      assert false;
    }
  }
}
Comment 1 Philipe Mulet CLA 2002-08-13 07:33:14 EDT
Access emulation support was incorrectly added onto outermost enclosing 
interface, where it should be located onto the outermost class type (here 
static member Inner).

Fixed in latest.
Comment 2 David Audel CLA 2002-09-19 07:08:07 EDT
Verified.