about summary refs log tree commit diff
path: root/tests/rustdoc/method-link-foreign-trait-impl-17476.rs
diff options
context:
space:
mode:
authorMichael Howell <michael@notriddle.com>2023-09-27 17:15:37 -0700
committerMichael Howell <michael@notriddle.com>2023-09-27 17:15:37 -0700
commit7cd8b2c9253e83c8101a45ccf6e401cd3160650c (patch)
tree6845aa1f60ffffea3787791ed2cde8bd7c46f612 /tests/rustdoc/method-link-foreign-trait-impl-17476.rs
parent79195d5cbbf839ed6db8cda394b0a7b2ef447ba7 (diff)
downloadrust-7cd8b2c9253e83c8101a45ccf6e401cd3160650c.tar.gz
rust-7cd8b2c9253e83c8101a45ccf6e401cd3160650c.zip
Rename issue-\d+.rs tests to have meaningful names
Diffstat (limited to 'tests/rustdoc/method-link-foreign-trait-impl-17476.rs')
-rw-r--r--tests/rustdoc/method-link-foreign-trait-impl-17476.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/rustdoc/method-link-foreign-trait-impl-17476.rs b/tests/rustdoc/method-link-foreign-trait-impl-17476.rs
new file mode 100644
index 00000000000..de17af50ccd
--- /dev/null
+++ b/tests/rustdoc/method-link-foreign-trait-impl-17476.rs
@@ -0,0 +1,13 @@
+// aux-build:issue-17476.rs
+// ignore-cross-compile
+
+#![crate_name="issue_17476"]
+
+extern crate issue_17476;
+
+pub struct Foo;
+
+// @has issue_17476/struct.Foo.html \
+//      '//*[@href="http://example.com/issue_17476/trait.Foo.html#method.foo"]' \
+//      'foo'
+impl issue_17476::Foo for Foo {}