]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/const-generics/type-alias.rs
Rollup merge of #106749 - glandium:dwarf, r=Mark-Simulacrum
[rust.git] / tests / rustdoc / const-generics / type-alias.rs
1 #![crate_name = "foo"]
2
3 // @has foo/type.CellIndex.html '//div[@class="item-decl"]/pre[@class="rust"]' 'type CellIndex<const D: usize> = [i64; D];'
4 pub type CellIndex<const D: usize> = [i64; D];