]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/const-generics/const-generic-slice.rs
4279de91f56c1420bab481156484d54cdd9fe939
[rust.git] / tests / rustdoc / const-generics / const-generic-slice.rs
1 #![crate_name = "foo"]
2
3 pub trait Array {
4     type Item;
5 }
6
7 // @has foo/trait.Array.html
8 // @has - '//*[@class="impl has-srclink"]' 'impl<T, const N: usize> Array for [T; N]'
9 impl<T, const N: usize> Array for [T; N] {
10     type Item = T;
11 }