MirException message only print "A" and not "AB" ``` import mir.exception; auto test() { throw new MirException("A", "B"); } try test(); catch(MirException e) { writeln(e.msg); } ```
MirException message only print "A" and not "AB"