Auto merge of #9033 - ehuss:redundant_semicolons, r=Eh2406

Fix redundant semicolon.

Lint introduced by https://github.com/rust-lang/rust/pull/79812.
This commit is contained in:
bors 2020-12-31 17:27:17 +00:00
commit 0cf6d2497a

View File

@ -105,7 +105,7 @@ fn color() {
return s.replace("\x1b[0m\x1b[0m", "\x1b[0m");
#[cfg(not(windows))]
return s.to_string();
};
}
let compare = |a, b| {
assert_eq!(normalize(a), normalize(b));