summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/const-generics/type-alias.rs
blob: 4b93e72d27370ecfd3ce8dc5cc886cb40c914beb (plain)
1
2
3
4
#![crate_name = "foo"]

// @has foo/type.CellIndex.html '//pre[@class="rust item-decl"]' 'type CellIndex<const D: usize> = [i64; D];'
pub type CellIndex<const D: usize> = [i64; D];