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/inline_cross/auxiliary | |
| 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/inline_cross/auxiliary')
| -rw-r--r-- | tests/rustdoc/inline_cross/auxiliary/issue-29584.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/rustdoc/inline_cross/auxiliary/issue-29584.rs b/tests/rustdoc/inline_cross/auxiliary/issue-29584.rs new file mode 100644 index 00000000000..a9b8796c0fe --- /dev/null +++ b/tests/rustdoc/inline_cross/auxiliary/issue-29584.rs @@ -0,0 +1,10 @@ +// compile-flags: -Cmetadata=aux + +pub struct Foo; + +#[doc(hidden)] +mod bar { + trait Bar {} + + impl Bar for ::Foo {} +} |
