Java and char problem

Hi
Using a new stable release, char/string operator is broken again for Java (I remember I’ve reported a similar issue some time ago). Here is a test case:

namespace consoleapplication9;

uses
  java.util;

type
  Program = class
  public
    class method Main(args: array of String): Int32;
    begin
      var tmp := '';
      var str := '0' + tmp ;
      writeLn(str);
      writeLn(Convert.ToInt32(str));
    end;
  end;
end. 

I think this code worked in the last preview. The str variable is set to “” instead of “0” after string concatenation. Both tmp and str are string variables.
Can you please verify this problem.

Regards
Artur

Curious. I don’t believe anything here changed this week. But reoproduced.

Thanks, logged as bugs://84985

bugs://84985 got closed with status fixed.