mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
10 lines
238 B
Rust
10 lines
238 B
Rust
// This test ensures that even if the crate module is `#[doc(hidden)]`, the file
|
|
// is generated.
|
|
// https://github.com/rust-lang/rust/issues/109695
|
|
|
|
//@ has 'foo/index.html'
|
|
//@ has 'foo/all.html'
|
|
|
|
#![crate_name = "foo"]
|
|
#![doc(hidden)]
|