File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -178,6 +178,7 @@ struct HeapEquableValue {
178178 }
179179
180180 // / Extracts a number from wrapper type notation like "Type(123)" or "Type(-45.6)"
181+ // / Issue #101: Supports std.checkedint.Checked and similar wrapper types
181182 private static double extractWrappedNumber (const (char )[] s, out bool success) @nogc nothrow {
182183 success = false ;
183184 if (s.length == 0 ) {
Original file line number Diff line number Diff line change @@ -155,6 +155,7 @@ unittest {
155155 expect(evaluation.result.hasContent()).to.equal(true );
156156}
157157
158+ // Issue #101: lessThan works with std.checkedint.Checked
158159@(" lessThan works with std.checkedint.Checked" )
159160unittest {
160161 import std.checkedint : Checked, Abort;
You can’t perform that action at this time.
0 commit comments