summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/issue-29503.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rustdoc/issue-29503.rs')
-rw-r--r--tests/rustdoc/issue-29503.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/rustdoc/issue-29503.rs b/tests/rustdoc/issue-29503.rs
new file mode 100644
index 000000000..01ae44385
--- /dev/null
+++ b/tests/rustdoc/issue-29503.rs
@@ -0,0 +1,18 @@
+use std::fmt;
+
+// @has issue_29503/trait.MyTrait.html
+pub trait MyTrait {
+ fn my_string(&self) -> String;
+}
+
+// @has - "//div[@id='implementors-list']//*[@id='impl-MyTrait-for-T']//h3[@class='code-header']" "impl<T> MyTrait for Twhere T: Debug"
+impl<T> MyTrait for T
+where
+ T: fmt::Debug,
+{
+ fn my_string(&self) -> String {
+ format!("{:?}", self)
+ }
+}
+
+pub fn main() {}