rust/tests/rustdoc/const-generics/const-generic-slice.rs
Michael Howell 74e843c833 rustdoc: remove unused class has-srclink
Stopped being used in CSS with
73d0f7c7b6
2023-01-28 17:18:56 -07:00

12 lines
227 B
Rust

#![crate_name = "foo"]
pub trait Array {
type Item;
}
// @has foo/trait.Array.html
// @has - '//*[@class="impl"]' 'impl<T, const N: usize> Array for [T; N]'
impl<T, const N: usize> Array for [T; N] {
type Item = T;
}