mir-core icon indicating copy to clipboard operation
mir-core copied to clipboard

MirException multi arg

Open fabienmica opened this issue 3 years ago • 0 comments

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); }

fabienmica avatar Oct 07 '22 07:10 fabienmica