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

sun.tools.java.CompilerError: copyInline: Using try in Instance Block

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P2 P2
    • None
    • 1.1.3
    • tools
    • None
    • generic
    • solaris_2.5.1

      Following source has a try{} inside an instance block...

      -kto


      cruella<58> cat A.java

      public class A
      {
        {
          try
          {
            System.out.println ("Block of A");
          }
          catch (Exception ex)
          {
            System.out.println ("Something");
          }
        }

        public A ()
        {
          System.out.println ("Constructor of A");
        }

        public static void main (String[] args)
        {
          System.out.println ("Start...");
          A a = new A ();
          System.out.println ("...End");
        }

      }
      cruella<59> javac A.java
      sun.tools.java.CompilerError: copyInline
              at sun.tools.tree.TryStatement.copyInline(TryStatement.java)
              at sun.tools.tree.CompoundStatement.copyInline(CompoundStatement.java)
              at sun.tools.tree.InlineMethodExpression.copyInline(InlineMethodExpression.java)
              at sun.tools.tree.MethodExpression.makeVarInits(MethodExpression.java)
              at sun.tools.tree.MethodExpression.checkValue(MethodExpression.java)
              at sun.tools.tree.MethodExpression.check(MethodExpression.java)
              at sun.tools.tree.ExpressionStatement.check(ExpressionStatement.java)
              at sun.tools.tree.Statement.checkBlockStatement(Statement.java)
              at sun.tools.tree.CompoundStatement.check(CompoundStatement.java)
              at sun.tools.tree.Statement.checkMethod(Statement.java)
              at sun.tools.javac.SourceField.check(SourceField.java)
              at sun.tools.javac.SourceClass.checkFields(SourceClass.java)
              at sun.tools.javac.SourceClass.checkInternal(SourceClass.java)
              at sun.tools.javac.SourceClass.check(SourceClass.java)
              at sun.tools.javac.Main.compile(Main.java)
              at sun.tools.javac.Main.main(Main.java)
      error: An error has occurred in the compiler; please file a bug report (http://java.sun.com/cgi-bin/bugreport.cgi).
      1 error

            tturnidgsunw Todd Turnidge (Inactive)
            ohair Kelly Ohair (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: