JITTester: Fix breaks in static initialization blocks

XMLWordPrintable

    • b11

        We currently have static blocks disabled because they allow for creating erroneous 'break' statements. Lets fix both issues.

        Here's a sample:
        class Test_0 {
            static {
                if (true) {
                    break; // <- compilation error here
                }
            }
        }

              Assignee:
              Evgeny Nikitin
              Reporter:
              Evgeny Nikitin
              Votes:
              0 Vote for this issue
              Watchers:
              6 Start watching this issue

                Created:
                Updated:
                Resolved: