about summary refs log tree commit diff
path: root/src/test/rustdoc
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-11-07 07:24:13 +0000
committerbors <bors@rust-lang.org>2017-11-07 07:24:13 +0000
commit3e7f501991df2f7fc87f6c340945112c128735d2 (patch)
treef97c0d2bacbebfa5b4c38099c54a1ef1f3f7a3e1 /src/test/rustdoc
parenta17e72462fcf4c4b8699fba086ab5363b0bba3bb (diff)
parent676b4bbdc40be39d12b811d6871c2df59e93cde9 (diff)
downloadrust-3e7f501991df2f7fc87f6c340945112c128735d2.tar.gz
rust-3e7f501991df2f7fc87f6c340945112c128735d2.zip
Auto merge of #45620 - ollie27:rustdoc_impl_generic_dupe, r=QuietMisdreavus
rustdoc: Fix duplicated impls with generics

The same type can appear multiple times in impls so we need to use a set
to avoid adding it multiple times.

Fixes: #45584
Diffstat (limited to 'src/test/rustdoc')
-rw-r--r--src/test/rustdoc/issue-45584.rs25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/test/rustdoc/issue-45584.rs b/src/test/rustdoc/issue-45584.rs
new file mode 100644
index 00000000000..6d6ae3dc94a
--- /dev/null
+++ b/src/test/rustdoc/issue-45584.rs
@@ -0,0 +1,25 @@
+// Copyright 2017 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.
+
+#![crate_name = "foo"]
+
+pub trait Bar<T, U> {}
+
+// @has 'foo/struct.Foo1.html'
+pub struct Foo1;
+// @count - '//*[@class="impl"]' 1
+// @has - '//*[@class="impl"]' "impl Bar<Foo1, &'static Foo1> for Foo1"
+impl Bar<Foo1, &'static Foo1> for Foo1 {}
+
+// @has 'foo/struct.Foo2.html'
+pub struct Foo2;
+// @count - '//*[@class="impl"]' 1
+// @has - '//*[@class="impl"]' "impl Bar<&'static Foo2, Foo2> for u8"
+impl Bar<&'static Foo2, Foo2> for u8 {}