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

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