mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 09:06:27 +00:00
9 lines
303 B
Rust
9 lines
303 B
Rust
#[cfg(test)]
|
|
pub use self::support::*;
|
|
// This has to have the same name as the module in `tracing`.
|
|
#[path = "../../tracing/tests/support/mod.rs"]
|
|
#[cfg(test)]
|
|
// path attribute requires referenced module to have same name so allow module inception here
|
|
#[allow(clippy::module_inception)]
|
|
mod support;
|