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

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