Skip to content

Commit b0a317d

Browse files
author
Jonathan Turner
committed
Fix tidy error
1 parent c1c1ad5 commit b0a317d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/compile-fail/moves-based-on-type-block-bad.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ fn main() {
3434
match hellothere.x { //~ ERROR cannot move out
3535
//~| cannot move out of borrowed content
3636
box E::Foo(_) => {}
37-
box E::Bar(x) => println!("{}", x.to_string()),
37+
box E::Bar(x) => println!("{}", x.to_string()),
3838
//~^ NOTE to prevent move
3939
box E::Baz => {}
4040
}

0 commit comments

Comments
 (0)