]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/issue-53812.rs
Suggest defining type parameter when appropriate
[rust.git] / src / test / rustdoc / issue-53812.rs
1 pub trait MyIterator {
2 }
3
4 pub struct MyStruct<T>(T);
5
6 macro_rules! array_impls {
7     ($($N:expr)+) => {
8         $(
9             impl<'a, T> MyIterator for &'a MyStruct<[T; $N]> {
10             }
11         )+
12     }
13 }
14
15 // @has issue_53812/trait.MyIterator.html '//*[@id="implementors-list"]//h3[1]' 'MyStruct<[T; 0]>'
16 // @has - '//*[@id="implementors-list"]//h3[2]' 'MyStruct<[T; 1]>'
17 // @has - '//*[@id="implementors-list"]//h3[3]' 'MyStruct<[T; 2]>'
18 // @has - '//*[@id="implementors-list"]//h3[4]' 'MyStruct<[T; 3]>'
19 // @has - '//*[@id="implementors-list"]//h3[5]' 'MyStruct<[T; 10]>'
20 array_impls! { 10 3 2 1 0 }