Skip to content

Commit

Permalink
Remove unnecessary usage comments in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cecton committed Nov 5, 2023
1 parent c79fbc0 commit 6789a80
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,6 @@ mod test {
#[test]
fn option() {
assert_implicit_clone!(Some("foo"));
// `assert_implicit_clone!(Some(NonImplicitCloneType));` doesn't compile
}

#[test]
Expand All @@ -231,6 +230,5 @@ mod test {
assert_implicit_clone!((1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11));
assert_implicit_clone!((1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12));
// `assert_implicit_clone!((1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13));` doesn't compile
// `assert_implicit_clone!((NonImplicitCloneType,));` doesn't compile
}
}

0 comments on commit 6789a80

Please sign in to comment.