Sign in
rust
/
rust
/
e790320ac4e55ff1ec4c2bb5faeb52eff5d96a32
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
inline_modules_cfg_test.rs
blob: 2964e2acb4438fd49d0bdd9a20954b198703f807 [
file
]
//@check-pass
//@compile-flags: --cfg test
#![
warn
(
clippy
::
inline_modules
)]
#![
allow
(
clippy
::
non_minimal_cfg
)]
fn
main
()
{}
#[
cfg
(
test
)]
mod
tests
{
mod
nested
{}
}
#[
cfg
(
all
(
test
))]
mod
tests_in_all
{
mod
nested
{}
}