mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
fmt
This commit is contained in:
parent
fc152cd67e
commit
85b2d9bf6f
@ -379,7 +379,9 @@ fn test_zip_next_back_side_effects_exhausted() {
|
||||
#[derive(Debug)]
|
||||
struct CountClone(Cell<i32>);
|
||||
|
||||
fn count_clone() -> CountClone { CountClone(Cell::new(0)) }
|
||||
fn count_clone() -> CountClone {
|
||||
CountClone(Cell::new(0))
|
||||
}
|
||||
|
||||
impl PartialEq<i32> for CountClone {
|
||||
fn eq(&self, rhs: &i32) -> bool {
|
||||
|
Loading…
Reference in New Issue
Block a user