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

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