Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8196055

[linux,mac] Stackoveflow error wasn't thrown

XMLWordPrintable

      FULL PRODUCT VERSION :
      java version "9.0.1"
      Java(TM) SE Runtime Environment (build 9.0.1+11)
      Java HotSpot(TM) 64-Bit Server VM (build 9.0.1+11, mixed mode)

      ADDITIONAL OS VERSION INFORMATION :
      System Software Overview:

        System Version: macOS 10.13.1 (17B1003)
        Kernel Version: Darwin 17.2.0

      EXTRA RELEVANT SYSTEM CONFIGURATION :
      Hardware Overview:

        Model Name: MacBook Air
        Model Identifier: MacBookAir7,2
        Processor Name: Intel Core i7
        Processor Speed: 2.2 GHz
        Number of Processors: 1
        Total Number of Cores: 2
        L2 Cache (per Core): 256 KB
        L3 Cache: 4 MB
        Memory: 8 GB
        Boot ROM Version: MBA71.0171.B00
        SMC Version (system): 2.27f2
        Serial Number (system): C1MPM0L0G944
        Hardware UUID: 2808720E-BD9B-53B5-AAF6-EEA8C95DAE51

      A DESCRIPTION OF THE PROBLEM :
      *** java.lang.instrument ASSERTION FAILED ***: "!errorOutstanding" with message transform method call failed at JPLISAgent.c line: 880
      *** java.lang.instrument ASSERTION FAILED ***: "!errorOutstanding" with message transform method call failed at JPLISAgent.c line: 880
      *** java.lang.instrument ASSERTION FAILED ***: "!errorOutstanding" with message transform method call failed at JPLISAgent.c line: 880
      Exception in thread "main"
      Exception: java.lang.NoClassDefFoundError thrown from the UncaughtExceptionHandler in thread "main"

      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      Just executing the attached source code.

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
      Stackoverflow Error
      ACTUAL -
      Exception in thread "main"
      Exception: java.lang.NoClassDefFoundError thrown from the UncaughtExceptionHandler in thread "main"

      ERROR MESSAGES/STACK TRACES THAT OCCUR :
      *** java.lang.instrument ASSERTION FAILED ***: "!errorOutstanding" with message transform method call failed at JPLISAgent.c line: 880
      *** java.lang.instrument ASSERTION FAILED ***: "!errorOutstanding" with message transform method call failed at JPLISAgent.c line: 880
      *** java.lang.instrument ASSERTION FAILED ***: "!errorOutstanding" with message transform method call failed at JPLISAgent.c line: 880

      REPRODUCIBILITY :
      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      import java.lang.reflect.InvocationTargetException;
      import java.lang.reflect.Method;

      interface A {
          static A staticMethod() {
              try {
                  Method method = A.class.getDeclaredMethods()[0];
                  return (A) method.invoke(null);
              } catch (IllegalAccessException | InvocationTargetException e) {
                  e.printStackTrace();
              }

              return null;
          }
      }

      public class Test {
          public static void main(String[] args) {
              A.staticMethod();
          }
      }
      ---------- END SOURCE ----------

            darcy Joe Darcy
            webbuggrp Webbug Group
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: