blob: 6517caf4f2fc9c53546da757dc9045c72fc42437 [file] [log] [blame]
#![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;
}