rustdoc: rename issue-\d+.rs tests to have meaningful names

This commit is contained in:
Michael Howell 2024-04-06 14:58:34 -07:00
parent 381a0e3cb0
commit 9a577e81c3
17 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,10 @@
//@ compile-flags: -Zunstable-options --document-hidden-items
// https://github.com/rust-lang/rust/issues/67851
#![crate_name="foo"]
// @has foo/struct.Hidden.html
#[doc(hidden)]
pub struct Hidden;
// @!has foo/struct.Private.html
struct Private;