about summary refs log tree commit diff
path: root/tests/rustdoc/const-generics/type-alias.rs
blob: 6d98648fe62b654d598bcc31dd4e4275c3f0a63f (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];