Skip to content

Commit 639fc7a

Browse files
committed
fix unittest
1 parent c08ec64 commit 639fc7a

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

source/mir/rcarray.d

+9-9
Original file line numberDiff line numberDiff line change
@@ -567,19 +567,19 @@ version(mir_test)
567567
uint s;
568568
this(this) @nogc nothrow @safe
569569
{
570-
() @trusted {
571-
puts("this(this)\n");
572-
} ();
570+
// () @trusted {
571+
// puts("this(this)\n");
572+
// } ();
573573
}
574574

575575
~this() nothrow @nogc @safe
576576
{
577-
() @trusted {
578-
if (s)
579-
puts("~this()\n");
580-
else
581-
puts("~this() - zero\n");
582-
} ();
577+
// () @trusted {
578+
// if (s)
579+
// puts("~this()\n");
580+
// else
581+
// puts("~this() - zero\n");
582+
// } ();
583583
}
584584
}
585585

0 commit comments

Comments
 (0)