Skip to content

Commit e47c971

Browse files
Add test for Wrapping<T>
1 parent 0d5984e commit e47c971

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/test/run-pass/num-wrapping.rs

+9
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,15 @@ fn test_op_assigns() {
173173
tmp.$op(Wrapping($rhs));
174174
assert_eq!(black_box(tmp), Wrapping($ans));
175175
}
176+
177+
// also test that a &Wrapping<T> right-hand side is possible
178+
{
179+
let mut tmp = Wrapping($initial);
180+
tmp = black_box(tmp);
181+
tmp.$op(&Wrapping($rhs));
182+
assert_eq!(black_box(tmp), Wrapping($ans));
183+
}
184+
176185
// FIXME(30524): Uncomment this test
177186
/*
178187
{

0 commit comments

Comments
 (0)