style: run tidy tests

This commit is contained in:
Kartavya Vashishtha 2022-08-25 13:17:50 +05:30
parent 9480b38189
commit 0d7ba13b72
No known key found for this signature in database
GPG key ID: A50012C2324E5DF0

View file

@ -189,7 +189,7 @@ fn collect_used_generics<'gp>(
} }
} }
} }
}, }
_ => (), _ => (),
}); });
// stable resort to lifetime, type, const // stable resort to lifetime, type, const
@ -378,8 +378,9 @@ impl<'outer, Outer, const OUTER: usize> () {
} }
#[test] #[test]
fn issue_11197 () { fn issue_11197() {
check_assist(extract_type_alias, check_assist(
extract_type_alias,
r#" r#"
struct Foo<T, const N: usize> struct Foo<T, const N: usize>
where where
@ -397,6 +398,7 @@ where
{ {
arr: Type<T, N>, arr: Type<T, N>,
} }
"#); "#,
);
} }
} }