9 lines
187 B
Rust
9 lines
187 B
Rust
|
// This test ensures that even if the crate module is `#[doc(hidden)]`, the file
|
||
|
// is generated.
|
||
|
|
||
|
// @has 'foo/index.html'
|
||
|
// @has 'foo/all.html'
|
||
|
|
||
|
#![crate_name = "foo"]
|
||
|
#![doc(hidden)]
|