summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue-5012/trailing_comma_never.rs
blob: 2fac8eae52b86e5ee65042e407cfb6c46765172a (plain)
1
2
3
4
5
6
7
8
// rustfmt-trailing_comma: Never

pub struct Matrix<T, const R: usize, const C: usize>
where
    [T; R * C]:
{
    contents: [T; R * C]
}