diff options
| author | Kazuyoshi Kato <kato.kazuyoshi@gmail.com> | 2018-09-14 22:42:44 -0700 |
|---|---|---|
| committer | Kazuyoshi Kato <kato.kazuyoshi@gmail.com> | 2018-09-14 22:42:44 -0700 |
| commit | bbcb6339aa6f1062a220ce5d16fea3b645c32281 (patch) | |
| tree | c125ad8a766c27900824a6cfe9eb999fa12a3674 /src/test/rustdoc | |
| parent | 3dbb741a4b54516e6979f85f4847361413a1b4a3 (diff) | |
| download | rust-bbcb6339aa6f1062a220ce5d16fea3b645c32281.tar.gz rust-bbcb6339aa6f1062a220ce5d16fea3b645c32281.zip | |
Add a test to prevent regression
The way it defines implementations is unrealistic though.
Diffstat (limited to 'src/test/rustdoc')
| -rw-r--r-- | src/test/rustdoc/issue-53812.rs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/test/rustdoc/issue-53812.rs b/src/test/rustdoc/issue-53812.rs new file mode 100644 index 00000000000..f0113d13bb4 --- /dev/null +++ b/src/test/rustdoc/issue-53812.rs @@ -0,0 +1,26 @@ +// Copyright 2018 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +pub trait MyIterator { +} + +pub struct MyStruct<T>(T); + +macro_rules! array_impls { + ($($N:expr)+) => { + $( + impl<'a, T> MyIterator for &'a MyStruct<[T; $N]> { + } + )+ + } +} + +// @has issue_53812/trait.MyIterator.html '//*[@id="implementors-list"]//h3[1]' 'MyStruct<[T; 0]>' +array_impls! { 10 3 2 1 0 } |
