Skip to content

Commit

Permalink
cargo dev fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kyoto7250 committed Jun 16, 2022
1 parent 2219f3c commit a3097e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/ui/default_instead_of_iter_empty.fixed
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use std::collections::HashMap;

#[derive(Default)]
struct Iter {
iter: std::iter::Empty::<usize>
iter: std::iter::Empty<usize>,
}

fn main() {
Expand Down
2 changes: 1 addition & 1 deletion tests/ui/default_instead_of_iter_empty.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use std::collections::HashMap;

#[derive(Default)]
struct Iter {
iter: std::iter::Empty::<usize>
iter: std::iter::Empty<usize>,
}

fn main() {
Expand Down

0 comments on commit a3097e1

Please sign in to comment.