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

Compiler allows invalid binary literals 0b and oBL

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 7
    • 7
    • tools
    • b75
    • x86
    • windows_xp
    • Verified

      Compiler accepts the following invalid code:
      public class Test {
          public static void main( String argv[] ) {
              int i = 0b; // should be compile-time error
              long l = 0BL; // should be compile-time error
          }
      }

      according to grammar (http://ccc/6860965) this is invalid:
      BinaryNumeral:
              0 b BinaryDigits
              0 B BinaryDigits
      BinaryDigits:
              BinaryDigit
              BinaryDigit BinaryDigits
      BinaryDigit: one of
              0 1

      This test will be integrated into jck soon.

            jjg Jonathan Gibbons
            vrudomet Victor Rudometov
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: