diff options
| author | Michael Howell <michael@notriddle.com> | 2023-10-16 16:06:58 -0700 |
|---|---|---|
| committer | Michael Howell <michael@notriddle.com> | 2023-10-16 18:01:02 -0700 |
| commit | 69dc19043bee2ce720f83bf1d6582240547c842e (patch) | |
| tree | 0cfac9f79c907c65c2b42a3f949ffd1cf238358e /tests/rustdoc/doc-hidden-trait-implementors-33069.rs | |
| parent | df5ea58287419d6f8c89019dafeb48ca7aed3a62 (diff) | |
| download | rust-69dc19043bee2ce720f83bf1d6582240547c842e.tar.gz rust-69dc19043bee2ce720f83bf1d6582240547c842e.zip | |
Rename `issue-\d+.rs` tests to have meaningful names
Diffstat (limited to 'tests/rustdoc/doc-hidden-trait-implementors-33069.rs')
| -rw-r--r-- | tests/rustdoc/doc-hidden-trait-implementors-33069.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/rustdoc/doc-hidden-trait-implementors-33069.rs b/tests/rustdoc/doc-hidden-trait-implementors-33069.rs new file mode 100644 index 00000000000..9c0e0014bd1 --- /dev/null +++ b/tests/rustdoc/doc-hidden-trait-implementors-33069.rs @@ -0,0 +1,12 @@ +#![crate_name="issue_33069"] + +pub trait Bar {} + +#[doc(hidden)] +pub mod hidden { + pub struct Foo; +} + +// @has issue_33069/trait.Bar.html +// @!has - '//code' 'impl Bar for Foo' +impl Bar for hidden::Foo {} |
