2019-06-07 00:58:32 +02:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
|
|
pub trait Array {
|
|
|
|
|
type Item;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @has foo/trait.Array.html
|
2023-01-28 16:35:02 -07:00
|
|
|
// @has - '//*[@class="impl"]' 'impl<T, const N: usize> Array for [T; N]'
|
2022-02-01 22:11:36 -08:00
|
|
|
impl<T, const N: usize> Array for [T; N] {
|
2019-06-07 00:58:32 +02:00
|
|
|
type Item = T;
|
|
|
|
|
}
|