Bug 22334 - Compiler generates corrupt classes
Summary: Compiler generates corrupt classes
Status: VERIFIED FIXED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 2.0   Edit
Hardware: PC Windows 2000
: P3 normal (vote)
Target Milestone: 2.1 M1   Edit
Assignee: Philipe Mulet CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-08-10 13:05 EDT by Richard Davies CLA
Modified: 2002-09-19 07:08 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.