2023-03-29 16:16:19 +02:00
|
|
|
// This test ensures that even if the crate module is `#[doc(hidden)]`, the file
|
|
|
|
// is generated.
|
2024-09-12 13:38:24 -07:00
|
|
|
// https://github.com/rust-lang/rust/issues/109695
|
2023-03-29 16:16:19 +02:00
|
|
|
|
2024-06-21 14:03:08 +02:00
|
|
|
//@ has 'foo/index.html'
|
|
|
|
//@ has 'foo/all.html'
|
2023-03-29 16:16:19 +02:00
|
|
|
|
|
|
|
#![crate_name = "foo"]
|
|
|
|
#![doc(hidden)]
|