]> git.lizzy.rs Git - rust.git/blob - tests/source/issue-3740.rs
chore: backport 8157a3f0afe978d3e953420577f8344db7e905bf
[rust.git] / 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 }