]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/const-generics/type-alias.rs
Rollup merge of #106797 - FawazTirmizi:dev/issues/104284, r=bjorn3
[rust.git] / tests / rustdoc / const-generics / type-alias.rs
1 #![crate_name = "foo"]
2
3 // @has foo/type.CellIndex.html '//pre[@class="rust typedef"]' 'type CellIndex<const D: usize> = [i64; D];'
4 pub type CellIndex<const D: usize> = [i64; D];