diff options
| author | Philippe Laflamme <philippe.laflamme@gmail.com> | 2020-10-21 22:13:56 -0400 |
|---|---|---|
| committer | Philippe Laflamme <philippe.laflamme@gmail.com> | 2021-01-13 23:13:49 -0500 |
| commit | 872dc60ed203d16d43140c1d1623474cf8a9aedc (patch) | |
| tree | 3b78dd2fb6e9aa8ed20731b91dff33ecae078150 | |
| parent | 180fdffa17e5598d31eb1eaa2697bd57ef1b8a29 (diff) | |
| download | rust-872dc60ed203d16d43140c1d1623474cf8a9aedc.tar.gz rust-872dc60ed203d16d43140c1d1623474cf8a9aedc.zip | |
Fix missing mod declaration for Wrapping tests.
| -rw-r--r-- | library/core/tests/num/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/library/core/tests/num/mod.rs b/library/core/tests/num/mod.rs index 012ab4ea5c5..b34bd66a0ac 100644 --- a/library/core/tests/num/mod.rs +++ b/library/core/tests/num/mod.rs @@ -29,6 +29,7 @@ mod u8; mod bignum; mod dec2flt; mod flt2dec; +mod wrapping; mod nan; |
