about summary refs log tree commit diff
path: root/tests/rustdoc/inline_cross/impl-ref-33113.rs
diff options
context:
space:
mode:
authorMichael Howell <michael@notriddle.com>2025-01-29 11:36:36 -0700
committerMichael Howell <michael@notriddle.com>2025-01-29 11:38:15 -0700
commiteb457da5cafc0eb907a0ecf70ffae5a37cd4e8f0 (patch)
tree7367ca7dbca5f54a188a6db4cc35f996f9deb365 /tests/rustdoc/inline_cross/impl-ref-33113.rs
parentfdef34b4ddfeebf614bb58622b4053cff616234a (diff)
downloadrust-eb457da5cafc0eb907a0ecf70ffae5a37cd4e8f0.tar.gz
rust-eb457da5cafc0eb907a0ecf70ffae5a37cd4e8f0.zip
rustdoc: rename `issue-\d+.rs` tests to have meaningful names
Diffstat (limited to 'tests/rustdoc/inline_cross/impl-ref-33113.rs')
-rw-r--r--tests/rustdoc/inline_cross/impl-ref-33113.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/rustdoc/inline_cross/impl-ref-33113.rs b/tests/rustdoc/inline_cross/impl-ref-33113.rs
new file mode 100644
index 00000000000..9ac4f02e00c
--- /dev/null
+++ b/tests/rustdoc/inline_cross/impl-ref-33113.rs
@@ -0,0 +1,13 @@
+// https://github.com/rust-lang/rust/issues/33113
+#![crate_name="foobar"]
+
+//@ aux-build:issue-33113.rs
+//@ build-aux-docs
+//@ ignore-cross-compile
+
+extern crate bar;
+
+//@ has foobar/trait.Bar.html
+//@ has - '//h3[@class="code-header"]' "for &'a char"
+//@ has - '//h3[@class="code-header"]' "for Foo"
+pub use bar::Bar;