about summary refs log tree commit diff
path: root/tests/rustdoc/trait-implementations-duplicate-self-45584.rs
diff options
context:
space:
mode:
authorMichael Howell <michael@notriddle.com>2023-11-20 11:50:18 -0700
committerMichael Howell <michael@notriddle.com>2023-11-20 11:50:18 -0700
commit0f466b06d197729ebeeb72a9503f0a878749ec87 (patch)
treed2b01d50ecca72403516f436c048208fade45cd3 /tests/rustdoc/trait-implementations-duplicate-self-45584.rs
parent46ecc10c6951a2a0e52d93fe5d3acae9743e3ab9 (diff)
downloadrust-0f466b06d197729ebeeb72a9503f0a878749ec87.tar.gz
rust-0f466b06d197729ebeeb72a9503f0a878749ec87.zip
rustdoc: rename `issue-\d+.rs` tests to have meaningful names
Diffstat (limited to 'tests/rustdoc/trait-implementations-duplicate-self-45584.rs')
-rw-r--r--tests/rustdoc/trait-implementations-duplicate-self-45584.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/rustdoc/trait-implementations-duplicate-self-45584.rs b/tests/rustdoc/trait-implementations-duplicate-self-45584.rs
new file mode 100644
index 00000000000..8a5f0413826
--- /dev/null
+++ b/tests/rustdoc/trait-implementations-duplicate-self-45584.rs
@@ -0,0 +1,15 @@
+#![crate_name = "foo"]
+
+pub trait Bar<T, U> {}
+
+// @has 'foo/struct.Foo1.html'
+pub struct Foo1;
+// @count - '//*[@id="trait-implementations-list"]//*[@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 - '//*[@id="trait-implementations-list"]//*[@class="impl"]' 1
+// @has - '//*[@class="impl"]' "impl Bar<&'static Foo2, Foo2> for u8"
+impl Bar<&'static Foo2, Foo2> for u8 {}