2022-07-15 17:48:46 +02:00
|
|
|
// Regression test for <https://github.com/rust-lang/rust/issues/98007>.
|
|
|
|
|
|
|
|
mod auto {
|
|
|
|
mod action_row {
|
|
|
|
pub struct ActionRowBuilder;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub mod builders {
|
|
|
|
pub use super::action_row::ActionRowBuilder;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-03-20 23:01:32 +00:00
|
|
|
//@ count "$.index[?(@.name=='builders')]" 1
|
|
|
|
//@ has "$.index[?(@.name == 'ActionRowBuilder')"]
|
2022-07-15 17:48:46 +02:00
|
|
|
pub use auto::*;
|
|
|
|
|
|
|
|
pub mod builders {
|
|
|
|
pub use crate::auto::builders::*;
|
|
|
|
}
|