]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue-3740.rs
:arrow_up: rust-analyzer
[rust.git] / src / tools / rustfmt / tests / target / issue-3740.rs
1 impl<T, const SIZE: usize> IntoNormalized for Vector<T, { SIZE }>
2 where
3     Vector<T, { SIZE }>: Div<Vector<T, { SIZE }>>,
4     for<'a> &'a Vector<T, { SIZE }>: IntoLength<Output = T>,
5 {
6     type Output = Vector<T, { SIZE }>;
7     fn into_normalized(self) -> Self::Output {}
8 }