]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue-5012/trailing_comma_never.rs
Merge commit '39683d8eb7a32a74bea96ecbf1e87675d3338506' into sync_cg_gcc-2022-03-26
[rust.git] / src / tools / rustfmt / tests / target / issue-5012 / trailing_comma_never.rs
1 // rustfmt-trailing_comma: Never
2
3 pub struct Matrix<T, const R: usize, const C: usize>
4 where
5     [T; R * C]:
6 {
7     contents: [T; R * C]
8 }