about summary refs log tree commit diff
path: root/tests/rustdoc-js/trait-methods.rs
diff options
context:
space:
mode:
authorbinarycat <binarycat@envs.net>2025-09-21 16:42:12 -0500
committerbinarycat <binarycat@envs.net>2025-10-02 15:29:22 -0500
commitd0dc603c3992cc4903bb77f949b0b9bebf1ea7a8 (patch)
tree313ddc167f31eb6577720c6c19ae804f7139486a /tests/rustdoc-js/trait-methods.rs
parenta145dfff03d562584a4a00552fb5df67cdd0d2b6 (diff)
downloadrust-d0dc603c3992cc4903bb77f949b0b9bebf1ea7a8.tar.gz
rust-d0dc603c3992cc4903bb77f949b0b9bebf1ea7a8.zip
rustdoc: add testcase for traitParent deduplication
Diffstat (limited to 'tests/rustdoc-js/trait-methods.rs')
-rw-r--r--tests/rustdoc-js/trait-methods.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/rustdoc-js/trait-methods.rs b/tests/rustdoc-js/trait-methods.rs
index c88f5edfd55..a741b361a33 100644
--- a/tests/rustdoc-js/trait-methods.rs
+++ b/tests/rustdoc-js/trait-methods.rs
@@ -2,3 +2,21 @@ pub trait MyTrait {
     type Item;
     fn next(&mut self) -> Option<Self::Item>;
 }
+
+pub struct Empty;
+
+impl MyTrait for Empty {
+    type Item = ();
+    fn next(&mut self) -> Option<()> {
+        None
+    }
+}
+
+pub struct Void;
+
+impl MyTrait for Void {
+    type Item = ();
+    fn next(&mut self) -> Option<()> {
+        Some(())
+    }
+}