Bug 83183

Summary: [compiler][1.5] VerifyError from compiled var args example
Product: [Eclipse Project] JDT Reporter: Martin Aeschlimann <martinae>
Component: CoreAssignee: Philipe Mulet <philippe_mulet>
Status: RESOLVED DUPLICATE QA Contact:
Severity: normal    
Priority: P3    
Version: 3.0   
Target Milestone: 3.1 M5   
Hardware: PC   
OS: Windows XP   
Whiteboard:

Description Martin Aeschlimann CLA 2005-01-19 08:28:40 EST
20050118

The classfile generated from the following code can not be run, it returns with
a VerifyError.

class A {
  public static void main(String[] args) {
    b(new boolean[0]);
  }
  
  static void b(Object...s) {
     System.out.println(s.length);
  }
}
Comment 1 Philipe Mulet CLA 2005-01-24 18:25:27 EST

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