Sign in
rust
/
rust
/
52dff85c4e5b68b8a5a871cf7a35b1bf9cbb5028
/
.
/
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
{}
}