]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/source/issue-3740.rs
Merge commit 'b7f3f7f6082679da2da9a0b3faf1b5adef3afd3b' into clippyup
[rust.git] / src / tools / rustfmt / tests / source / 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
9     }
10 }