Remove extra whitespace

This commit is contained in:
rdambrosio 2021-06-18 02:14:00 -04:00
parent 8e08b86304
commit 23e3354ae0

View File

@ -953,7 +953,7 @@ trait Foo<T> {
struct Bar;
impl Foo<u32> for Bar {
const B$0
const B$0;
}
"#,
r#"
@ -963,7 +963,7 @@ trait Foo<T> {
struct Bar;
impl Foo<u32> for Bar {
const BAR: u32 =
const BAR: u32 = ;
}
"#,
)