[lworld] add more regression tests for local variable proxies

XMLWordPrintable

      in theory it shouldn't be possible with the current code but we should have at least a test for this situation:

      value class Test {
          static String s0;
          String s;
          String ss;

          Test(boolean b) {
              s0 = null;
              s = s0; // no local proxy variable for s0 as it is static
              ss = s;
              super();
          }

          public static void main(String... args) {
              Test t = new Test(true);
          }
      }

            Assignee:
            Vicente Arturo Romero Zaldivar
            Reporter:
            Vicente Arturo Romero Zaldivar
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: