blob: 60d96770f7eaea8f0ffa9df1075767450f4ae610 [file] [log] [blame]
#![crate_name = "foo"]
#![feature(const_generics)]
pub trait Array {
type Item;
}
// @has foo/trait.Array.html
// @has - '//h3[@class="impl"]' 'impl<T, const N: usize> Array for [T; N]'
impl <T, const N: usize> Array for [T; N] {
type Item = T;
}