diff options
| author | Michael Howell <michael@notriddle.com> | 2023-09-27 17:15:37 -0700 |
|---|---|---|
| committer | Michael Howell <michael@notriddle.com> | 2023-09-27 17:15:37 -0700 |
| commit | 7cd8b2c9253e83c8101a45ccf6e401cd3160650c (patch) | |
| tree | 6845aa1f60ffffea3787791ed2cde8bd7c46f612 /tests/rustdoc/method-link-foreign-trait-impl-17476.rs | |
| parent | 79195d5cbbf839ed6db8cda394b0a7b2ef447ba7 (diff) | |
| download | rust-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.rs | 13 |
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 {} |
