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

instanceof variables can't be resolved

XMLWordPrintable

    • generic
    • generic

      ADDITIONAL SYSTEM INFORMATION :
      os: generic
      java: 17, 20, 21

      A DESCRIPTION OF THE PROBLEM :
      Description
      pleease see the followed code:

      public class Case {
      static void run(Object obj) {
      if (obj instanceof Integer a || obj instanceof String b || obj instanceof String[] c) {
      System.out.print(c);
      }
      }
      }

      the compileer show error at the line 4: c cannot be resolved to a variable

      Based on the principle of doing better: Since it supports the use of the line 3,so I recommand that add support for the used variable defined in the instanceof statements. or show compiler error at the line 3

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
      no errors or show compiler error at the line 3
      ACTUAL -
      compiler error : c cannot be resolved to a variable

      FREQUENCY : always


            jlahoda Jan Lahoda
            webbuggrp Webbug Group
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated: