mir-core
mir-core copied to clipboard
MirException multi arg
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); }