]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/source/issue-3740.rs
Rollup merge of #107166 - petrochenkov:nooptable, r=oli-obk
[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 }