Skip to content

Commit 6c499ad

Browse files
committed
Normalize the comment style
1 parent 3196236 commit 6c499ad

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

src/sign.rs

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -213,13 +213,12 @@ fn unsigned_wrapping_is_unsigned() {
213213
fn require_unsigned<T: Unsigned>(_: &T) {}
214214
require_unsigned(&Wrapping(42_u32));
215215
}
216-
/*
216+
217217
// Commenting this out since it doesn't compile on Rust 1.8,
218218
// because on this version Wrapping doesn't implement Neg and therefore can't
219219
// implement Signed.
220-
#[test]
221-
fn signed_wrapping_is_signed() {
222-
fn require_signed<T: Signed>(_: &T) {}
223-
require_signed(&Wrapping(-42));
224-
}
225-
*/
220+
// #[test]
221+
// fn signed_wrapping_is_signed() {
222+
// fn require_signed<T: Signed>(_: &T) {}
223+
// require_signed(&Wrapping(-42));
224+
// }

0 commit comments

Comments
 (0)